summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEsteban Carnevale <alfplayer@mailoo.org>2013-09-06 11:54:49 -0300
committerEsteban Carnevale <alfplayer@mailoo.org>2013-09-06 13:17:29 -0300
commitefc5bf4d83b131196fb4d9e4ed352a803c18f03b (patch)
tree6e8f8010d701b1d438c668e6f31c56fd9d80c48a
parentd006e83b17c35a5e4605a7102898ce4c8ccfdc08 (diff)
downloadabslibre-efc5bf4d83b131196fb4d9e4ed352a803c18f03b.tar.gz
abslibre-efc5bf4d83b131196fb4d9e4ed352a803c18f03b.tar.bz2
abslibre-efc5bf4d83b131196fb4d9e4ed352a803c18f03b.zip
parabolaiso-data-1-1: add package
-rw-r--r--libre/parabolaiso-data/PKGBUILD29
1 files changed, 29 insertions, 0 deletions
diff --git a/libre/parabolaiso-data/PKGBUILD b/libre/parabolaiso-data/PKGBUILD
new file mode 100644
index 000000000..22c1b98f6
--- /dev/null
+++ b/libre/parabolaiso-data/PKGBUILD
@@ -0,0 +1,29 @@
+# Maintainer: Esteban Carnevale <alfplayer@mailoo.org>
+
+pkgname=parabolaiso-data
+pkgver=1
+pkgrel=1
+pkgdesc="Data files of parabolaiso, the tool to create ISO images"
+arch=('any')
+url="https://projects.parabolagnulinux.org/parabolaiso.git"
+license=('GPL')
+_basesource1='https://projects.parabolagnulinux.org/~old/parabolaiso.git/plain'
+_basesource2='https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2'
+source=("${_basesource1}/configs/releng/syslinux/splash.png"
+ "${_basesource2}/ShellBinPkg/UefiShell/X64/Shell.efi"
+ "${_basesource2}/EdkShellBinPkg/FullShell/X64/Shell_Full.efi")
+md5sums=('befd0e7c38a03442b791f2a530b4dd2d'
+ '01a8ee2759fa2170c065414489d9b823'
+ '92d78841d0c44118064b59e95164b2ee')
+
+package() {
+ cd $srcdir
+
+ datadir="usr/share/parabolaiso/data"
+
+ install -d $pkgdir/$datadir
+
+ install -D -m644 splash.png $pkgdir/$datadir/splash.png
+ install -D -m644 Shell.efi $pkgdir/$datadir/Shell.efi
+ install -D -m644 Shell_Full.efi $pkgdir/$datadir/Shell_Full.efi
+}