diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-19 00:31:40 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-19 00:31:40 -0300 |
commit | b7be3e931b811decb9a8686a60e52fe723bbaf81 (patch) | |
tree | 2e7da21de151c50ecdfa97a9d4ef5db5de62db51 /community/ois/PKGBUILD | |
parent | 78397621fc97288066a5d73989811ab0fe641bd6 (diff) | |
parent | 1098e9db0acc5bb5c45af5778492faf3b4c99dd6 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community-testing/ipvsadm/PKGBUILD
community/arch/PKGBUILD
community/chntpw/PKGBUILD
community/dnstracer/PKGBUILD
community/dvtm/PKGBUILD
community/gnash/PKGBUILD
community/ngspice/PKGBUILD
community/siege/PKGBUILD
extra/enscript/PKGBUILD
extra/gconfmm/PKGBUILD
extra/gftp/PKGBUILD
extra/libart-lgpl/PKGBUILD
extra/libcaca/PKGBUILD
extra/libdv/PKGBUILD
extra/libgnomemm/PKGBUILD
extra/libidl2/PKGBUILD
extra/libvisual/PKGBUILD
extra/libxdamage/PKGBUILD
extra/libxrender/PKGBUILD
extra/openslp/PKGBUILD
extra/snarf/PKGBUILD
multilib/wine/PKGBUILD
testing/mesa/PKGBUILD
testing/xf86-video-glint/PKGBUILD
Diffstat (limited to 'community/ois/PKGBUILD')
-rw-r--r-- | community/ois/PKGBUILD | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/community/ois/PKGBUILD b/community/ois/PKGBUILD index f410caaa9..eeac3678f 100644 --- a/community/ois/PKGBUILD +++ b/community/ois/PKGBUILD @@ -1,19 +1,20 @@ -# $Id: PKGBUILD 38882 2011-02-02 21:19:53Z svenstaro $ +# $Id: PKGBUILD 64772 2012-02-18 04:26:52Z svenstaro $ # Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> # Contributor: scippio <scippio@berounet.cz> pkgname=ois pkgver=1.3 -pkgrel=1 +_oisver=${pkgver/./-} +pkgrel=2 pkgdesc="Object Oriented Input System" arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/wgois" -license=('zlib/libpng') +license=('custom:zlib/libpng') makedepends=('autoconf' 'automake' 'libtool' 'gcc' 'libxaw') -source=("http://downloads.sourceforge.net/project/wgois/Source%20Release/${pkgver}/ois_v${pkgver/./-}.tar.gz") +source=("http://downloads.sourceforge.net/project/wgois/Source%20Release/${pkgver}/ois_v${_oisver}.tar.gz") md5sums=('9697fead17eac6025151cd2e1fca1518') build() { - cd ${srcdir}/${pkgname}-v${pkgver/./-} + cd ${srcdir}/${pkgname}-v${_oisver} chmod +x bootstrap ./bootstrap ./configure --prefix=/usr @@ -21,6 +22,6 @@ build() { } package() { - cd ${srcdir}/${pkgname}-v${pkgver/./-} + cd ${srcdir}/${pkgname}-v${_oisver} make DESTDIR=${pkgdir} install } |