diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/ois/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/ois/PKGBUILD')
-rw-r--r-- | community/ois/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community/ois/PKGBUILD b/community/ois/PKGBUILD new file mode 100644 index 000000000..9ba2d73e2 --- /dev/null +++ b/community/ois/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 38882 2011-02-02 21:19:53Z svenstaro $ +# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> +# Contributor: scippio <scippio@berounet.cz> +pkgname=ois +pkgver=1.3 +pkgrel=1 +pkgdesc="Object Oriented Input System" +arch=('i686' 'x86_64') +url="http://sourceforge.net/projects/wgois" +license=('zlib/libpng') +makedepends=('autoconf' 'automake' 'libtool' 'gcc' 'libxaw') +source=("http://downloads.sourceforge.net/project/wgois/Source%20Release/${pkgver}/ois_v${pkgver/./-}.tar.gz") +md5sums=('9697fead17eac6025151cd2e1fca1518') + +build() { + cd ${srcdir}/${pkgname}-v${pkgver/./-} + chmod +x bootstrap + ./bootstrap + ./configure --prefix=/usr + make +} + +package() { + cd ${srcdir}/${pkgname}-v${pkgver/./-} + make DESTDIR=${pkgdir} install +} |