30 lines
1.0 KiB
Bash
30 lines
1.0 KiB
Bash
pkgname=manjaro-hello
|
|
pkgver=1.0
|
|
pkgrel=1
|
|
pkgdesc="A tool that helps the new user of Manjaro in the discovery of the system."
|
|
url="https://github.com/Huluti/$pkgname"
|
|
arch=('any')
|
|
license=('GPL')
|
|
depends=('gtk3' 'python3')
|
|
makedepends=('git')
|
|
source=("$pkgname::git+https://github.com/Huluti/$pkgname")
|
|
md5sums=('SKIP')
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname"
|
|
mkdir -p "${pkgdir}/usr/share/${pkgname}"
|
|
cp -r data "${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}/usr/share/applications/${pkgname}.desktop
|
|
install -D -m755 "src/manjaro_hello.py" "${pkgdir}/usr/bin/manjaro-hello"
|
|
cd "po"
|
|
for lang in $(ls -1 | sed -e 's/\..*$//'); do
|
|
if [ $lang != "manjaro-hello" ]
|
|
then
|
|
install -d -m755 $pkgdir/usr/share/locale/$lang/LC_MESSAGES
|
|
msgfmt -c -o "$pkgdir/usr/share/locale/$lang/LC_MESSAGES/$pkgname.mo" $lang.po
|
|
fi
|
|
done
|
|
}
|