blob: 03b79c489748fce23cbd5eeba45a2fb894100edd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Maintainer:
# Contributor: Solomon Choina <shlomochoina@gmail.com>
pkgname=libutp
pkgver=r99.fda9f4b
pkgrel=2
_commit=fda9f4b3db97ccb243fcbed2ce280eb4135d705b
pkgdesc='uTorrent Transport Protocol library'
url='https://github.com/bittorrent/libutp'
makedepends=(git cmake)
depends=()
arch=(x86_64)
license=('custom:Public Domain')
source=(git+https://github.com/transmission/libutp.git#commit=$_commit)
sha256sums=('SKIP')
pkgver(){
cd libutp
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cmake -B build -S libutp \
-DCMAKE_INSTALL_PREFIX=/usr \
-DLIBUTP_BUILD_PROGRAMS=OFF \
-DCMAKE_CXX_FLAGS="$CXXFLAGS -ffat-lto-objects"
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --install build
install -Dm644 libutp/LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
}
|