mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
22 lines
725 B
Bash
22 lines
725 B
Bash
# $Id: PKGBUILD 36413 2009-04-22 05:30:53Z eric $
|
|
# Maintainer: dorphell <dorphell@archlinux.org>
|
|
pkgname=xplc
|
|
pkgver=0.3.13
|
|
pkgrel=2
|
|
pkgdesc="Cross-Platform Lightweight Components"
|
|
arch=(i686 x86_64)
|
|
url="http://xplc.sourceforge.net"
|
|
license=('LGPL')
|
|
depends=('gcc-libs')
|
|
source=(http://downloads.sourceforge.net/sourceforge/xplc/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('39da3270527c8712b8e8fcf03768d29f')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr --mandir=/usr/share/man --without-libuuid || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
ln -sf uuidgen.1.gz $pkgdir/usr/share/man/man1/uuidcdef.1
|
|
rm -f $pkgdir/usr/bin/uuidgen
|
|
rm -f $pkgdir/usr/share/man/man1/uuidgen.1
|
|
}
|