blob: 2de7b75fff78479f3642e808ff6e5a1ac3280fd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Maintainer: Luke R. <g4jc@openmailbox.org> GPG: rsa4096/3EAE8697
pkgname=xdgmenumaker
pkgver=0.9
pkgrel=1
pkgdesc="xdgmenumaker creates generating menus using xdg information for blackbox, compizboxmenu, fluxbox, icewm, jwm, pekwm and windowmaker."
url="https://github.com/gapan/$pkgname"
arch=('any')
license=('GPLv3')
depends=('pygtk' 'pygobject-devel' 'gobject-introspection' 'python-gobject' 'python-xdg')
optdepends=('txt2tags: for manpages')
source=("https://github.com/gapan/${pkgname}/archive/${pkgver}.tar.gz")
sha512sums=('802a11cafefc3ab8e411685da04a9687b33b57efe67a93b42de43d95039489dca5fe110d6642995b241d382e1b2ee65e06a0bd548ae31ed5d1aeb243dd96c645')
build() {
cd "$pkgname-$pkgver"
make
}
package() {
cd "$pkgname-$pkgver"
mkdir -p $pkgdir/usr/local/share/desktop-directories
make DESTDIR="$pkgdir/" install
## begin fix for depreciated /usr/local install location ##
mkdir -p $pkgdir/usr/bin
mv $pkgdir/usr/local/bin/xdgmenumaker $pkgdir/usr/bin
rm -rf $pkgdir/usr/local/bin
}
|