core/libaal/PKGBUILD
2018-12-04 01:02:24 +01:00

25 lines
560 B
Bash

pkgname=libaal
pkgver=1.0.7
pkgrel=1
pkgdesc="Reiser4 filesystem tools support library"
arch=('x86_64')
url="https://sourceforge.net/projects/reiser4/"
depends=('glibc')
options=('!libtool' 'staticlibs')
license=('GPL2')
source=("http://sourceforge.net/projects/reiser4/files/reiser4-utils/${pkgname}/${pkgname}-${pkgver}.tar.gz")
sha256sums=('7c8568869d8f54268d690455278cdf5bc9ae9228aa33706017c570bbdaab9891')
build() {
cd "${pkgname}-${pkgver}"
./configure --prefix=/usr
make
}
package() {
cd "${pkgname}-${pkgver}"
make DESTDIR="$pkgdir" install
}