mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-03 15:01:44 +01:00
35 lines
782 B
Plaintext
35 lines
782 B
Plaintext
# Contributor: Ivan Tham <pickfire@riseup.net>
|
|
# Maintainer: Drew DeVault <sir@cmpwn.com>
|
|
_commit=3c88778c6c85d97fb63c41c05304519e0484b07c
|
|
pkgname=ubase
|
|
pkgver=20190312
|
|
pkgrel=0
|
|
pkgdesc="Suckless collection of unportable base"
|
|
url="https://core.suckless.org/ubase"
|
|
arch="all !mips !mips64" # fails to build on mips
|
|
arch="" # Fails to link due to missing sys/sysmacros.h
|
|
license="MIT"
|
|
subpackages="$pkgname-doc"
|
|
makedepends="git"
|
|
source="" # source is only distributed as a git repo
|
|
options="suid !check" # upstream provides no test suite
|
|
builddir="$srcdir/$pkgname"
|
|
|
|
prepare() {
|
|
cd "$srcdir"
|
|
git clone git://git.suckless.org/ubase
|
|
cd ubase
|
|
git checkout $_commit
|
|
|
|
default_prepare
|
|
}
|
|
|
|
build() {
|
|
make
|
|
}
|
|
|
|
package() {
|
|
chmod a+s passwd
|
|
make DESTDIR="$pkgdir" PREFIX=/usr install
|
|
}
|