summaryrefslogtreecommitdiff
path: root/community/librtfcomp/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
committerroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
commit8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch)
tree03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/librtfcomp/PKGBUILD
parente445a313723389ba9ee1fded025c567dae5b21ea (diff)
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/librtfcomp/PKGBUILD')
-rw-r--r--community/librtfcomp/PKGBUILD26
1 files changed, 26 insertions, 0 deletions
diff --git a/community/librtfcomp/PKGBUILD b/community/librtfcomp/PKGBUILD
new file mode 100644
index 000000000..a7b5355d5
--- /dev/null
+++ b/community/librtfcomp/PKGBUILD
@@ -0,0 +1,26 @@
+# $Id: PKGBUILD 88520 2013-04-19 10:31:06Z spupykin $
+# Contributor: Bartek Iwaniec <hash87 [at] gmail [dot] com>
+
+pkgname=librtfcomp
+pkgver=1.2
+pkgrel=1
+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=('cdff301ff346905595d0bb6efd432850')
+
+build() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ make DESTDIR="${pkgdir}" install
+ install -dm0755 $pkgdir/usr/bin
+ install -m0755 tests/{to,from}rtf $pkgdir/usr/bin
+}