Commit caa699e7 authored by Seblu's avatar Seblu
Browse files

mailboot: bump v3-2

- Repackage with new pacman metadata
- Build from git
- Update source info
parent 8b11b051
Loading
Loading
Loading
Loading

mailboot/.SRCINFO

0 → 100644
+16 −0
Original line number Diff line number Diff line
pkgbase = mailboot
	pkgdesc = Send an email when your computer boot
	pkgver = 3
	pkgrel = 2
	url = https://git.seblu.net/seblu/mailboot
	arch = any
	license = LGPL-3.0-or-later
	makedepends = git
	depends = bash
	depends = systemd
	depends = sed
	backup = etc/mailboot.conf
	source = git+https://git.seblu.net/seblu/mailboot.git#tag=v3
	md5sums = eaf4d282ef0713ef71aea6251cb08d20

pkgname = mailboot
+9 −7
Original line number Diff line number Diff line
@@ -2,24 +2,26 @@

pkgname=mailboot
pkgver=3
pkgrel=1
pkgrel=2
pkgdesc='Send an email when your computer boot'
arch=('any')
url='https://github.com/seblu/mailboot'
license=('GPL')
url='https://git.seblu.net/seblu/mailboot'
license=('LGPL-3.0-or-later')
depends=('bash' 'systemd' 'sed')
makedepends=('git')
backup=('etc/mailboot.conf')
source=("http://ftp.seblu.net/softs/mailboot/$pkgname-$pkgver.tar.xz")
md5sums=('4e17ee95cfc560b16dd0dfff1fa89b61')
source=("git+https://git.seblu.net/seblu/mailboot.git#tag=v$pkgver")
md5sums=('eaf4d282ef0713ef71aea6251cb08d20')

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

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