Compare commits

..

No commits in common. "177df7eb6d2470a52eae2dbfe2f37811c468dbfa" and "452765b52e066b2951b57c785ab449c00633eefc" have entirely different histories.

View File

@ -1,30 +0,0 @@
# Maintainer: DEBUCQUOY Anthony <Debucquoy.anthony@gmail.com>
pkgname=tonitch-sent-git
pkgver=
pkgrel=1
pkgdesc="sent presentation tool with patch for tonitch"
arch=('x86_64')
url="https://git.herisson.ovh/tonitch/sent"
license=('MIT')
depends=()
makedepends=('git')
provides=(sent)
conflicts=(sent)
source=("git+$url")
md5sums=('SKIP')
pkgver() {
cd "$srcdir/sent"
printf "%s" "$(git describe --tags | sed 's/\([^-]*-\)g/r\1/;s/-/./g')"
}
build() {
cd "$srcdir/sent"
make
}
package() {
cd "$srcdir/sent"
make PREFIX=/usr DESTDIR="$pkgdir/" install
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}