diff options
Diffstat (limited to 'pcr')
-rw-r--r-- | pcr/ahcpd/PKGBUILD | 2 | ||||
-rw-r--r-- | pcr/apertium-tolk-svn/PKGBUILD | 41 |
2 files changed, 1 insertions, 42 deletions
diff --git a/pcr/ahcpd/PKGBUILD b/pcr/ahcpd/PKGBUILD index 39b5e6b4f..4c1281202 100644 --- a/pcr/ahcpd/PKGBUILD +++ b/pcr/ahcpd/PKGBUILD @@ -3,7 +3,7 @@ pkgname=ahcpd pkgver=0.53 pkgrel=2 pkgdesc="Ad-Hoc Configuration Protocol" -arch=(i686 x86_64) +arch=(i686 x86_64 armv7h) url="http://www.pps.jussieu.fr/~jch/software/ahcp/" license=('custom') depends=('sh') diff --git a/pcr/apertium-tolk-svn/PKGBUILD b/pcr/apertium-tolk-svn/PKGBUILD deleted file mode 100644 index 0df36f89a..000000000 --- a/pcr/apertium-tolk-svn/PKGBUILD +++ /dev/null @@ -1,41 +0,0 @@ -# Contributor: Kevin Brubeck Unhammer <unhammer@gmail.com> -# Maintainer: Kevin Brubeck Unhammer <unhammer@gmail.com> -pkgname=apertium-tolk-svn -pkgver=25848 -pkgrel=1 -pkgdesc="apertium-tolk is a program that translates as you type, using Apertium" -arch=('i686' 'x86_64') -url="http://wiki.apertium.org/wiki/Apertium-tolk" -license=('GPL2') -depends=('apertium-dbus' 'python>=2.4') -makedepends=('automake' 'autoconf' 'intltool') -conflicts=('apertium-tolk') -source=() -md5sums=() - -_svntrunk=https://apertium.svn.sourceforge.net/svnroot/apertium/trunk/apertium-tolk -_svnmod=apertium-tolk - -build() { - cd "$srcdir" - - if [ "$(ls -A $_svnmod 2> /dev/null)" ]; then - (cd $_svnmod && svn update -r $pkgver) || return 1 - else - svn co ${_svntrunk} ${_svnmod} -r ${pkgver} || return 1 - fi - - msg "SVN checkout done or server timeout" - - cd ${srcdir}/${_svnmod} - - sh autogen.sh - ./configure --prefix=/usr - make -} - -package() { - cd "$srcdir/$_svnmod" - - make DESTDIR="$pkgdir/" install || return 1 -} |