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/librtfcomp/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/librtfcomp/PKGBUILD')
-rw-r--r-- | community/librtfcomp/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/community/librtfcomp/PKGBUILD b/community/librtfcomp/PKGBUILD new file mode 100644 index 000000000..7622c5f1b --- /dev/null +++ b/community/librtfcomp/PKGBUILD @@ -0,0 +1,24 @@ +# Contributor: Bartek Iwaniec <hash87 [at] gmail [dot] com> + +pkgname=librtfcomp +pkgver=1.1 +pkgrel=4 +pkgdesc="SynCE librtfcomp library" +arch=(i686 x86_64) +license=('GPL') +url="http://www.synce.org/" +depends=(pyrex) +source=(http://downloads.sourceforge.net/synce/${pkgname}-${pkgver}.tar.gz) +md5sums=('b7f70dc41687d920ec9f47c01f56d6ce') + +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 .. + +} |