diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2013-04-20 10:57:49 +0200 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2013-04-20 10:57:49 +0200 |
commit | 742bd5a396f7a4c474e8ffec0686fc7312603cb8 (patch) | |
tree | 4279eed1d5d5c40895c7dcf0025ee62ea81144c1 /community/librtfcomp | |
parent | a51b3c4acfc8b2f659ad0dc6ac655b1381bef757 (diff) | |
parent | 1f9776d421ac40faa59f797893033e99e4f919eb (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community/gsynaptics/PKGBUILD
community/xmms2/PKGBUILD
extra/gpsd/PKGBUILD
Diffstat (limited to 'community/librtfcomp')
-rw-r--r-- | community/librtfcomp/PKGBUILD | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/community/librtfcomp/PKGBUILD b/community/librtfcomp/PKGBUILD index eecc73f66..d55eb48ed 100644 --- a/community/librtfcomp/PKGBUILD +++ b/community/librtfcomp/PKGBUILD @@ -1,25 +1,26 @@ -# $Id: PKGBUILD 66204 2012-02-23 03:18:55Z spupykin $ +# $Id: PKGBUILD 88520 2013-04-19 10:31:06Z spupykin $ # Contributor: Bartek Iwaniec <hash87 [at] gmail [dot] com> pkgname=librtfcomp -pkgver=1.1 -pkgrel=5 +pkgver=1.2 +pkgrel=1 pkgdesc="SynCE librtfcomp library" arch=(i686 x86_64 'mips64el') license=('GPL') url="http://www.synce.org/" depends=(pyrex) source=(http://downloads.sourceforge.net/synce/${pkgname}-${pkgver}.tar.gz) -md5sums=('b7f70dc41687d920ec9f47c01f56d6ce') +md5sums=('cdff301ff346905595d0bb6efd432850') build() { - cd ${srcdir}/${pkgname}-${pkgver} ./configure --prefix=/usr make - make DESTDIR="${pkgdir}" install -#Remove the conflicting binary file (conflict with core-utils). I don't know any other workaround. - rm ${pkgdir}/usr/bin/test - cd .. +} -} +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR="${pkgdir}" install + install -dm0755 $pkgdir/usr/bin + install -m0755 tests/{to,from}rtf $pkgdir/usr/bin +} |