#Packager: Richard Lapointe #Former Packager(s): Name #Anything commented out is optional and can be deleted. pkgname=Agender pkgver=1.1.9 pkgrel=1rl #arch=noarch #source=(http://downloads.sourceforge.net/project/$pkgname/$pkname-$pkgver.tar.bz) source=(http://downloads.sourceforge.net/project/agender/Agender-1.1.9.tar.bz2) sourcetemplate=http://people.salixos.org/laprjns/$pkgname/$pkgver/ docs=("readme" "install" "copying" "changelog" "authors" "news" "todo") url=http://agender.sourceforge.net/ #dotnew=() #CFLAGS= #CXXFLAGS= #options=('noextract') #doinst() { # #} slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "agender (a schedule/calendar tool)" "Agender is a cross-plataform schedule/calendar tool. It was written to" "be small, simple and work on any computer with any OS. Agender is free" "software licensed under the GNU General Public License." "With Agender you can associate some notes with a date or with no date" "in particular if you mark the note as sticky, you simply start it and" "it will create a task-bar icon and stay in the background, without" "annoying you, it can also be configured to run on login. " ) build() { cd $startdir/src/$pkgname-$pkgver ./configure --prefix=/usr --libdir=/usr/lib${LIBDIRSUFFIX} --localstatedir=/var --sysconfdir=/etc --build=$arch-slackware-linux make || return 1 make install DESTDIR=$startdir/pkg # lets deal with the icons for size in 10 22 24 32 48 64 128 do mkdir -p $startdir/pkg/usr/share/icons/hicolor/${size}x${size}/apps/ cp -rf $startdir/src/$pkgname-$pkgver/share/agender${size}.png $startdir/pkg/usr/share/icons/hicolor/${size}x${size}/apps/ done }