blob: 4236e534903e8a0b15fd778dd1d98dab9312cac6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: David Schury <dasc at posteo de>
pkgname=libite
pkgver=2.6.1
pkgrel=1
pkgdesc='Extends the GNU libc with some missing stuff from BSD'
url='https://github.com/troglobit/libite'
arch=('i686' 'x86_64' 'armv7h')
license=('custom')
source=("https://github.com/troglobit/${pkgname}/releases/download/v${pkgver}/${pkgname}-$pkgver.tar.xz")
sha256sums=('0185c3e76874c5821825deaf17cd45e81ce49aaa424e09de5f3665243c59026b')
build() {
cd "${pkgname}-${pkgver}"
./configure --prefix=/usr
make
}
package() {
cd "${pkgname}-${pkgver}"
make DESTDIR=${pkgdir} install-strip
}
|