#Packager: George Vlahavas pkgname=xfce4-zorinmenulite-plugin pkgver=1.1.4 pkgrel=1gv source=("https://launchpad.net/~zorinos/+archive/ubuntu/stable/+sourcefiles/xfce4-zorinmenulite-plugin/$pkgver/xfce4-zorinmenulite-plugin_$pkgver.tar.xz") docs=("readme" "install" "copying" "changelog" "authors" "news" "todo") url=https://launchpad.net/~zorinos slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "xfce4-zorinmenulite-plugin (a menu plugin for Xfce)" "Zorin Menu Lite is the default application launcher in Zorin OS Lite." "When you open it you are shown a list of categories for the installed" "apps. You can browse through all of your installed applications by" "clicking on the category buttons. Top level categories make browsing" "fast, and simple to switch between." ) build() { cd $startdir/src/$pkgname mkdir -p build cd build # Your application will probably need different cmake flags; these are only # examples. You might want to run 'ccmake' inside the source main directory # to see available flags. cmake \ -DCMAKE_C_FLAGS:STRING="$CFLAGS" \ -DCMAKE_CXX_FLAGS:STRING="$CXXFLAGS" \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib${LIBDIRSUFFIX} \ -DCMAKE_BUILD_TYPE=Release \ .. make -j $numjobs || return 1 make install DESTDIR=$startdir/pkg cd .. }