Skip to content
PKGBUILD 631 B
Newer Older
Seblu's avatar
Seblu committed
# Maintainer: Sébastien Luttringer

pkgname=mailboot
Seblu's avatar
Seblu committed
pkgver=3
Seblu's avatar
Seblu committed
pkgrel=1
pkgdesc='Send an email when your computer boot'
arch=('any')
url='https://github.com/seblu/mailboot'
license=('GPL')
Seblu's avatar
Seblu committed
depends=('bash' 'systemd' 'sed')
backup=('etc/mailboot.conf')
Seblu's avatar
Seblu committed
source=("http://ftp.seblu.net/softs/mailboot/$pkgname-$pkgver.tar.xz")
Seblu's avatar
Seblu committed
md5sums=('4e17ee95cfc560b16dd0dfff1fa89b61')
Seblu's avatar
Seblu committed

build() {
  cd $pkgname-$pkgver
Seblu's avatar
Seblu committed
  ./configure --prefix=/usr --sysconfdir=/etc
Seblu's avatar
Seblu committed
  make
}

package() {
  cd $pkgname-$pkgver
  make install DESTDIR="$pkgdir"
Seblu's avatar
Seblu committed
  # license is well gpl, remove it
  rm "$pkgdir/usr/share/doc/mailboot/LICENSE"
Seblu's avatar
Seblu committed
}

# vim:set ts=2 sw=2 et: