summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLucas Saliés Brum2016-06-05 05:59:16 -0400
committerLucas Saliés Brum2016-06-05 05:59:16 -0400
commited9bfcc3c34327f464e88ba4b50801a90aeb3ee1 (patch)
tree6b84e6119b297c6f09d6bcfe03afd976aa07d1f3
downloadaur-ed9bfcc3c34327f464e88ba4b50801a90aeb3ee1.tar.gz
Commit inicial
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD35
2 files changed, 47 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..47ee5ed11aab
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = fortune-mod-br
+ pkgdesc = A collection of several fortune cookies for Portuguese speakers, gathered from various sources, ranging from proverbs to quotations from literature classics.
+ pkgver = 20080530
+ pkgrel = 1
+ arch = any
+ license = GPL
+ depends = fortune-mod
+ source = http://ftp.us.debian.org/debian/pool/main/f/fortunes-br/fortunes-br_20080530_all.deb
+ md5sums = 0eff031af2ceaa18e8cde437535db4a0
+
+pkgname = fortune-mod-br
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..58c1518f90fe
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,35 @@
+# Maintainer: Lucas Saliés Brum <lucas@archlinux.com.br>
+
+pkgname=fortune-mod-br
+pkgver=20080530
+pkgrel=1
+epoch=
+pkgdesc="A collection of several fortune cookies for Portuguese speakers, gathered from various sources, ranging from proverbs to quotations from literature classics."
+arch=('any')
+url=""
+license=('GPL')
+groups=()
+depends=('fortune-mod')
+makedepends=()
+checkdepends=()
+optdepends=()
+provides=()
+conflicts=()
+replaces=()
+backup=()
+options=()
+install=
+changelog=
+source=("http://ftp.us.debian.org/debian/pool/main/f/fortunes-br/fortunes-br_${pkgver}_all.deb")
+noextract=()
+md5sums=('0eff031af2ceaa18e8cde437535db4a0')
+validpgpkeys=()
+
+prepare() {
+ ar p fortunes-br_${pkgver}_all.deb data.tar.gz | tar zx
+}
+
+package() {
+ mkdir -p "$pkgdir"/usr/share/fortune/
+ install -D -m644 "$srcdir"/usr/share/games/fortunes/{brasil,brasil.dat} "$pkgdir"/usr/share/fortune/
+}