blob: 36fbe1b942b75ceae72d6b5b93ec426dc78ebd3a (
plain)
1 # Description: Caching mechanism for freedesktop.org compliant menus
2 # URL: https://lxde.org/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: libfm-extra
5
6 name=menu-cache
7 version=1.1.0
8 release=1
9 source=(https://downloads.sourceforge.net/lxde/$name-$version.tar.xz
10 menu-cache-1.1.0-0001-Support-gcc10-compilation.patch)
11
12 build() {
13 cd $name-$version
14
15 patch -p1 -i $SRC/menu-cache-1.1.0-0001-Support-gcc10-compilation.patch
16
17 ./configure --prefix=/usr \
18 --libexecdir=/usr/lib/$name
19
20 make
21 make DESTDIR=$PKG install
22 }
|