diff options
-rw-r--r-- | nonprism/claws-mail/PKGBUILD | 2 | ||||
-rw-r--r-- | pcr/ahcpd/PKGBUILD | 2 | ||||
-rw-r--r-- | pcr/apertium-tolk-svn/PKGBUILD | 41 |
3 files changed, 2 insertions, 43 deletions
diff --git a/nonprism/claws-mail/PKGBUILD b/nonprism/claws-mail/PKGBUILD index 19903cf81..9017be37e 100644 --- a/nonprism/claws-mail/PKGBUILD +++ b/nonprism/claws-mail/PKGBUILD @@ -8,7 +8,7 @@ pkgname=claws-mail pkgver=3.16.0 -pkgrel=2.nonprism1 +pkgrel=3.nonprism1 pkgdesc="A GTK+ based e-mail client, without libgdata support" arch=('x86_64' 'i686' 'armv7h') license=('GPL3') 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 -} |