contrib/hefur/Pkgfile

25 lines
776 B
Plaintext
Raw Normal View History

# Description: Standalone C++ BitTorrent tracker
# URL: https://github.com/abique/hefur
# Maintainer: Matt Housh, jaeger at crux dot ninja
# Depends on: protobuf cmake gnutls git
name=hefur
version=0.6-8b3dd3c
release=1
source=(https://crux.nu/~jaeger/files/$name-8b3dd3c.tar.xz \
hefurd)
build() {
cd $name-8b3dd3c
sed -i -e '45,48d' CMakeLists.txt
cmake -Bbuild -DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS -DNDEBUG" \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
install -d -m 0755 -o root -g root $PKG/var/run/hefur $PKG/usr/share/hefur/torrents
install -D -m 0644 -o root -g root /dev/null $PKG/var/log/hefurd.log
install -D -m 0755 -o root -g root $SRC/hefurd $PKG/etc/rc.d/hefurd
}