Add emulationstation packages

This commit is contained in:
moparisthebest
2017-01-02 18:21:39 -05:00
parent b9b09587bc
commit 880600f59d
5 changed files with 95 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
pkgbase = emulationstation-themes
pkgdesc = EmulationStation themes pack
pkgver = 0.1
pkgrel = 1
url = http://aloshi.com/emulationstation
install = emulationstation-themes.install
arch = any
license = WTFPL
source = emulationstation-themes-0.1.zip::http://www.aloshi.com/es_downloads/es_themes_jan_20_2013.zip
md5sums = d72d30690bce0f00ca6c276bbc5ff816
pkgname = emulationstation-themes

View File

@@ -0,0 +1,21 @@
# Contributor: Drew Liszewski <drew dot liszewski at gmail dot com>
# Maintainer: Drew Liszewski
pkgname=emulationstation-themes
pkgver=0.1
pkgrel=1
pkgdesc="EmulationStation themes pack"
arch=('any')
url="http://aloshi.com/emulationstation"
license=('WTFPL')
groups=()
makedepends=()
depends=()
install='emulationstation-themes.install'
source=("${pkgname}-${pkgver}.zip::http://www.aloshi.com/es_downloads/es_themes_jan_20_2013.zip")
md5sums=('d72d30690bce0f00ca6c276bbc5ff816')
package() {
cd "${srcdir}"
install -d ${pkgdir}/usr/share/EmulationStation/themes
cp -r ${srcdir}/* ${pkgdir}/usr/share/EmulationStation/themes/
}

View File

@@ -0,0 +1,9 @@
post_install() {
echo "Make symbolic links to relevant themes from /usr/share/EmulationStation/themes to ~/.emulationstation"
echo "Example: ln -s /usr/share/EmulationStation/themes/snes ~/.emulationstation/"
echo
}
post_upgrade () {
post_install
}