Initial upload

This commit is contained in:
kaanders 2025-12-09 20:23:00 +02:00
commit 96c89baaf0
2 changed files with 37 additions and 0 deletions

14
.SRCINFO Normal file
View file

@ -0,0 +1,14 @@
pkgbase = curlent
pkgdesc = A wget-like command-line torrent downloader using libtorrent
pkgver = 1.0.0
pkgrel = 1
url = https://github.com/maribotto/curlent
arch = x86_64
license = MIT
makedepends = boost
depends = libtorrent-rasterbar
depends = boost-libs
source = curlent-1.0.0.tar.gz::https://github.com/maribotto/curlent/archive/v1.0.0.tar.gz
sha256sums = b77d89c488986583b339d7b2c03045c4435534f19c5c0d6b823693fa9d47d72e
pkgname = curlent

23
PKGBUILD Normal file
View file

@ -0,0 +1,23 @@
# Maintainer: maribotto <maribotto@users.noreply.github.com>
pkgname=curlent
pkgver=1.0.0
pkgrel=1
pkgdesc="A wget-like command-line torrent downloader using libtorrent"
arch=('x86_64')
url="https://github.com/maribotto/curlent"
license=('MIT')
depends=('libtorrent-rasterbar' 'boost-libs')
makedepends=('boost')
source=("$pkgname-$pkgver.tar.gz::https://github.com/maribotto/curlent/archive/v$pkgver.tar.gz")
sha256sums=('b77d89c488986583b339d7b2c03045c4435534f19c5c0d6b823693fa9d47d72e')
build() {
cd "$pkgname-$pkgver"
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" PREFIX=/usr install
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}