mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 07:02:29 +01:00
33 lines
841 B
Plaintext
33 lines
841 B
Plaintext
# Contributor: dai9ah <dai9ah@protonmail.com>
|
|
# Maintainer: dai9ah <dai9ah@protonmail.com>
|
|
pkgname=btfs
|
|
pkgver=2.19
|
|
pkgrel=0
|
|
pkgdesc="Bittorrent filesystem based on FUSE"
|
|
options="!check" # No testsuite
|
|
url="https://github.com/johang/btfs"
|
|
arch="all"
|
|
license="GPL-3.0-or-later"
|
|
depends="python3"
|
|
makedepends="autoconf automake curl-dev fuse-dev libtorrent-rasterbar-dev"
|
|
subpackages="$pkgname-doc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/johang/$pkgname/archive/v$pkgver.tar.gz"
|
|
|
|
prepare() {
|
|
default_prepare
|
|
autoreconf -vfi
|
|
}
|
|
|
|
build() {
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" -C "$builddir" install
|
|
}
|
|
|
|
sha512sums="e890b25605808dbf09f70d4ad8703a4beafb098af39a872a6b98f6959eb30e1ba9be8ae420be0797ba8f2774b487f2434252e93eac599094a824ba411441fdd6 btfs-2.19.tar.gz"
|