mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-27 23:44:04 +00:00
24 lines
730 B
Bash
24 lines
730 B
Bash
# $Id: PKGBUILD 11710 2008-09-01 18:55:22Z alexanderf $
|
|
# Maintainer: Alexander Fehr <pizzapunk gmail com>
|
|
# Contributor: Brad Gordon <brad@rpgcyco.net>
|
|
|
|
pkgname=libmowgli
|
|
pkgver=0.7.0
|
|
pkgrel=1
|
|
pkgdesc="Class library containing performance and usability oriented extensions to C"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.atheme.org/Projects/Libmowgli"
|
|
license=('custom')
|
|
depends=('glibc')
|
|
source=(http://distfiles.atheme.org/libmowgli-$pkgver.tbz2)
|
|
md5sums=('b4666d37ae78358ca5d1833f4e706b3c')
|
|
|
|
build() {
|
|
cd "$srcdir/libmowgli-$pkgver"
|
|
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
|
|
install -D -m644 COPYING "$pkgdir/usr/share/licenses/libmowgli/COPYING" || return 1
|
|
}
|