Update PKGBUILD

merge-requests/64/head
Hugo Posnic 2016-12-18 17:09:29 +01:00
parent 99b2eb1bd8
commit 70232a7d38
1 changed files with 23 additions and 14 deletions

View File

@ -1,29 +1,38 @@
pkgname=manjaro-hello _pkgname=manjaro-hello
pkgver=1.0 pkgname=${_pkgname}-git
pkgver=0.1
pkgrel=1 pkgrel=1
pkgdesc="A tool that helps the new user of Manjaro in the discovery of the system." pkgdesc="A tool that helps the new user of Manjaro in the discovery of the system."
url="https://github.com/Huluti/$pkgname" url="https://github.com/Huluti/${_pkgname}"
arch=('any') arch=('any')
license=('GPL') license=('GPL')
depends=('gtk3' 'python3') depends=('gtk3' 'python3')
makedepends=('git') makedepends=('git')
source=("$pkgname::git+https://github.com/Huluti/$pkgname") replaces=('manjaro-hello')
provides=('manjaro-hello')
conflicts=('manjaro-hello')
source=("${_pkgname}::git+https://github.com/Huluti/${_pkgname}")
md5sums=('SKIP') md5sums=('SKIP')
pkgver() {
cd "${_pkgname}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() { package() {
cd "$srcdir/$pkgname" cd "${srcdir}/${_pkgname}"
mkdir -p "${pkgdir}/usr/share/${pkgname}" mkdir -p "${pkgdir}/usr/share/${_pkgname}"
cp -r data "${pkgdir}/usr/share/${pkgname}" cp -r data "${pkgdir}/usr/share/${_pkgname}"
cp -r ui "${pkgdir}/usr/share/${pkgname}" cp -r ui "${pkgdir}/usr/share/${_pkgname}"
install -D -m644 ${pkgname}.desktop ${pkgdir}/etc/skel/.config/autostart/${pkgname}.desktop install -D -m644 ${_pkgname}.desktop ${pkgdir}/etc/skel/.config/autostart/${_pkgname}.desktop
install -D -m644 ${pkgname}.desktop ${pkgdir}/usr/share/applications/${pkgname}.desktop install -D -m644 ${_pkgname}.desktop ${pkgdir}/usr/share/applications/${_pkgname}.desktop
install -D -m755 "src/manjaro_hello.py" "${pkgdir}/usr/bin/manjaro-hello" install -D -m755 "src/manjaro_hello.py" "${pkgdir}/usr/bin/${_pkgname}"
cd "po" cd "po"
for lang in $(ls -1 | sed -e 's/\..*$//'); do for lang in $(ls -1 | sed -e 's/\..*$//'); do
if [ $lang != "manjaro-hello" ] if [ ${lang} != ${_pkgname} ]
then then
install -d -m755 $pkgdir/usr/share/locale/$lang/LC_MESSAGES install -d -m755 ${pkgdir}/usr/share/locale/${lang}/LC_MESSAGES
msgfmt -c -o "$pkgdir/usr/share/locale/$lang/LC_MESSAGES/$pkgname.mo" $lang.po msgfmt -c -o "${pkgdir}/usr/share/locale/${lang}/LC_MESSAGES/${_pkgname}.mo" ${lang}.po
fi fi
done done
} }