summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorHussein Mohammed2018-05-04 07:09:41 +0100
committerHussein Mohammed2018-05-04 07:09:41 +0100
commit4b4911cf357ccbad4d1da8874efcb02d39bc8347 (patch)
tree8bfe5937a73ffe5d0bc07a1c0be883d9da9a9472
downloadaur-4b4911cf357ccbad4d1da8874efcb02d39bc8347.tar.gz
aspell-ar package is born
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD24
2 files changed, 36 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..177a04581172
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = aspell-ar
+ pkgdesc = Arabic dictionary for aspell
+ pkgver = 1.2
+ pkgrel = 1
+ url = http://aspell.net/
+ arch = any
+ depends = aspell
+ source = ftp://ftp.gnu.org/gnu/aspell/dict/ar/aspell6-ar-1.2-0.tar.bz2
+ md5sums = 154cf762bafdd02db419b62191138738
+
+pkgname = aspell-ar
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..6a2e8cc3f651
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,24 @@
+# Maintainer: حسين محمد <zidhussein@gmail.com>
+
+pkgname=aspell-ar
+pkgver=1.2
+pkgrel=1
+pkgdesc="Arabic dictionary for aspell"
+url="http://aspell.net/"
+license=('GPL')
+depends=('aspell')
+arch=('any')
+source=(ftp://ftp.gnu.org/gnu/aspell/dict/ar/aspell6-ar-${pkgver}-0.tar.bz2)
+md5sums=('154cf762bafdd02db419b62191138738')
+
+
+build() {
+ cd "${srcdir}/aspell6-ar-${pkgver}-0"
+ ./configure
+ make
+}
+
+package() {
+ cd "${srcdir}/aspell6-ar-${pkgver}-0"
+ make DESTDIR="$pkgdir" install
+}