finally commit all the packages
This commit is contained in:
59
src/lnd/PKGBUILD
Normal file
59
src/lnd/PKGBUILD
Normal file
@@ -0,0 +1,59 @@
|
||||
# Maintainer: David Parrish <daveparrish@tutanota.com>
|
||||
# URL: https://github.com/lightningnetwork/lnd
|
||||
# Upstream: https://github.com/lightningnetwork/lnd
|
||||
|
||||
#shellcheck disable=SC2034
|
||||
|
||||
pkgname='lnd'
|
||||
pkgver=0.15.5_beta
|
||||
_pkgver="${pkgver//_/-}"
|
||||
pkgrel=3
|
||||
pkgdesc='The Lightning Network Daemon, for secure off-chain bitcoin transactions.'
|
||||
arch=('i686' 'x86_64' 'aarch64')
|
||||
url='https://github.com/lightningnetwork/lnd'
|
||||
license=('MIT')
|
||||
depends=('glibc')
|
||||
makedepends=('go')
|
||||
provides=('lnd' 'lncli')
|
||||
conflicts=('lnd-git')
|
||||
source=("$pkgname-$pkgver.tar.gz::https://github.com/lightningnetwork/lnd/archive/v${_pkgver}.tar.gz")
|
||||
sha256sums=('8893dfa360aae92fefcb3df493136d7ab4a00e3e1b6b13b0fab378d7d71fb8d5')
|
||||
|
||||
# create a fake go path directory and pushd into it
|
||||
# $1 real directory
|
||||
# $2 gopath directory
|
||||
_fake_gopath_pushd() {
|
||||
mkdir -p "$GOPATH/src/${2%/*}"
|
||||
rm -f "$GOPATH/src/$2"
|
||||
ln -rsT "$1" "$GOPATH/src/$2"
|
||||
pushd "$GOPATH/src/$2" >/dev/null || exit
|
||||
}
|
||||
|
||||
_fake_gopath_popd() {
|
||||
popd >/dev/null || exit
|
||||
}
|
||||
|
||||
prepare() {
|
||||
# Create GOPATH
|
||||
mkdir -p "${srcdir:?}/GOPATH"
|
||||
mv "$srcdir/$pkgname-$_pkgver" "$srcdir/lnd"
|
||||
}
|
||||
|
||||
build() {
|
||||
# Use suggested GOFLAGS for Arch Linux.
|
||||
# https://wiki.archlinux.org/title/Go_package_guidelines
|
||||
export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw"
|
||||
|
||||
export GOPATH="$srcdir/GOPATH"
|
||||
_fake_gopath_pushd "$pkgname" github.com/lightningnetwork/lnd
|
||||
make && make install
|
||||
_fake_gopath_popd
|
||||
}
|
||||
|
||||
package() {
|
||||
for _bin in lnd lncli; do
|
||||
install -Dm 755 "$srcdir/GOPATH/bin/$_bin" -t "${pkgdir:?}/usr/bin";
|
||||
done
|
||||
|
||||
install -D -m644 "$pkgname/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
||||
}
|
Reference in New Issue
Block a user