summaryrefslogtreecommitdiff
path: root/pcr
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2018-01-29 12:53:36 -0300
committerDavid P <megver83@parabola.nu>2018-01-29 12:53:36 -0300
commitc40eccdf170b5c186c280a54b058f689bcec0e29 (patch)
treed991ad52b7a0fd740b2fd48d5cc5fc00592e659e /pcr
parent5f04dd9e7aaa8948431f0151c46d2c2b5df2096c (diff)
parentf29755b7a98c8c1c454fd1c3dc67fee947931b98 (diff)
downloadabslibre-c40eccdf170b5c186c280a54b058f689bcec0e29.tar.gz
abslibre-c40eccdf170b5c186c280a54b058f689bcec0e29.tar.bz2
abslibre-c40eccdf170b5c186c280a54b058f689bcec0e29.zip
Merge branch 'master' of git://git.parabola.nu/abslibre/abslibre
Diffstat (limited to 'pcr')
-rw-r--r--pcr/ahcpd/PKGBUILD2
-rw-r--r--pcr/apertium-tolk-svn/PKGBUILD41
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
-}