2012-12-05 21:35:00 +01:00
|
|
|
# Description: library creating and utilizing caches to speed up the manipulation for freedesktop.org defined application menus
|
2010-06-23 12:38:47 +02:00
|
|
|
# URL: http://lxde.org/
|
|
|
|
# Maintainer: Bartlomiej Palmowski, rotwang at crux dot org dot pl
|
|
|
|
# Depends on: glib
|
2012-12-05 21:35:00 +01:00
|
|
|
# Comment:
|
2010-06-23 12:38:47 +02:00
|
|
|
name=menu-cache
|
2013-10-19 14:09:07 +02:00
|
|
|
version=0.5.1
|
2010-06-23 12:38:47 +02:00
|
|
|
release=1
|
2013-10-19 14:09:07 +02:00
|
|
|
source=(http://downloads.sourceforge.net/project/lxde/$name/$name%20${version%.*}.x/$name-$version.tar.gz)
|
2010-06-23 12:38:47 +02:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--disable-static \
|
|
|
|
--libexecdir=/usr/lib/$name
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|
2012-12-05 21:35:00 +01:00
|
|
|
|