summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2f662dbfbb1589a4966d8760e3f359fc58057aa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Maintainer: Jose Riha <jose1711 gmail com>
# Contributor: Archie <xMickael@ifrance.com>

pkgname=tk-splash
pkgver=0.16
pkgrel=1
pkgdesc="create a splash screen"
depends=('tk')
arch=('any')
license=('GPL')
source=(http://search.cpan.org/CPAN/authors/id/S/SR/SREZIC/Tk-Splash-$pkgver.tar.gz)
url="http://search.cpan.org/~srezic/Tk-Splash/"
md5sums=('0fa1f21f98e558fe07d9dfcd0350c256')

build() {
  cd $srcdir/Tk-Splash-$pkgver
  perl Makefile.PL
  make
}

package() {
  cd $srcdir/Tk-Splash-$pkgver
  make DESTDIR=$pkgdir install
  /usr/bin/find $pkgdir -name '.packlist' -exec rm '{}' \;
  /usr/bin/find $pkgdir -name 'perllocal.pod' -exec rm '{}' \;
}