Commit 8bfa834e authored by Seblu's avatar Seblu
Browse files

Add mailboot

parent 8ca1bb42
Loading
Loading
Loading
Loading

mailboot/PKGBUILD

0 → 100644
+25 −0
Original line number Diff line number Diff line
# Maintainer: Sébastien Luttringer

pkgname=mailboot
pkgver=1
pkgrel=1
pkgdesc='Send an email when your computer boot'
arch=('any')
url='https://github.com/seblu/mailboot'
license=('GPL')
depends=('bash' 'systemd')
source=("http://ftp.seblu.net/softs/mailboot/$pkgname-$pkgver.tar.xz")
md5sums=('ec9e4791e77d78dfffce175b718feb66')

build() {
  cd $pkgname-$pkgver
  ./configure --prefix=/usr
  make
}

package() {
  cd $pkgname-$pkgver
  make install DESTDIR="$pkgdir"
}

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