You are not logged in.
Pages: 1
Anyone know if the newest version works on arch? I remember reading somewhere that there was a problem. It takes quite a bit of time editing the menu manually.
Offline
AUR has a PKGBUILD of smeg 0.5.2
http://aur.archlinux.org/packages.php?d … Packages=0
but first you'll need pyXDG
http://aur.archlinux.org/packages.php?d … Packages=0
I summon daemons from the depths of /etc/rc.d
Offline
0.5.2 works but i was wondering if we could get e newer version because the current version is quite a bit differnet. It lets you make items visible/invisible.
Offline
first you'd have to make a package for pyXDG 0.14.
I summon daemons from the depths of /etc/rc.d
Offline
I made the original packages that are available in AUR, but haven't updated them since pyxdg apparently do not find some of the icons, or at least that was the answer I got when asking on ubuntu forums for a possible solution.
Offline
You'll probably end up reinstalling the older smeg 0.5/pyxdg 0.10, but here are the updated PKGBUILDS so you could give it a try.
pyxdg 0.14 PKGBUILD
# Contributor: Mario A. Vazquez <mario_vazq@hotmail.com>
pkgname=pyxdg
pkgver=0.14
pkgrel=1
pkgdesc="Python library to access freedesktop.org standards"
url="http://freedesktop.org/Software/pyxdg"
license=""
depends=('python>=2.4')
makedepends=('sed')
conflicts=()
replaces=('python-xdg')
backup=()
install=
source=(http://www.freedesktop.org/~lanius/$pkgname-$pkgver.tar.gz)
md5sums=('c917afece0f60d784dc640bac4ea4bf3')
build() {
cd $startdir/src/$pkgname-$pkgver
# fix python path
sed -i "s:/usr/bim/env python:/usr/bin/python:" setup.py
chmod +x setup.py
./setup.py install --root=$startdir/pkg
}
SMEG 0.7.5 PKGBUILD
# Contributor: Mario A. Vazquez <mario_vazq@hotmail.com>
pkgname=smeg
pkgver=0.7.5
pkgrel=1
pkgdesc="Simple Menu Editor for Gnome (known as menueditor)"
url="http://www.realistanew.com/projects/smeg/"
license=""
depends=('python' 'pyxdg>=0.14' 'pygtk')
makedepends=('sed')
conflicts=()
replaces=('menueditor')
backup=()
install=
source=(http://dev.realistanew.com/smeg/$pkgver/$pkgname-$pkgver.tar.gz)
md5sums=('1ac2d76b9443f6d588619419dd9bbed4')
build() {
cd $startdir/src/$pkgname-$pkgver
chmod +x setup.py
./setup.py install --root=$startdir/pkg
}
The problem with the newer versions since smeg 0.6/pyxdg 0.11: Some icons are not displayed, even when XDG_DATA_DIRS value points to the correct /usr/share and /opt/gnome/share
Any help on the problem will be appreciated.
Offline
Pages: 1