mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 14:24:36 +08:00
25 lines
524 B
Bash
25 lines
524 B
Bash
pkgname=libaal
|
|
pkgver=1.0.6
|
|
pkgrel=1
|
|
pkgdesc="Reiser4 filesystem tools support library"
|
|
arch=('x86_64')
|
|
url="http://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")
|
|
md5sums=('6fd5c2471e1fd3972fb23ac5dc1b77e3')
|
|
|
|
build() {
|
|
cd "${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
}
|