summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrián Laviós Gomis2019-02-04 14:50:40 +0100
committerAdrián Laviós Gomis2019-02-04 14:50:40 +0100
commitea089895749b4a508c838b6575e4db03346e397a (patch)
tree1d83b1b70b25af7ce0926256682f383f0f770175
parent283e87665f18423736a2b1914d9dbe24cebb55db (diff)
downloadaur-ea089895749b4a508c838b6575e4db03346e397a.tar.gz
Add provides line in PKGBUILD, terminfo files
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD5
2 files changed, 6 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 3b3c920a9187..e0cce5fd97d9 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = mtm-git
pkgdesc = Perhaps the smallest useful terminal multiplexer in the world.
- pkgver = r52.7432d00
+ pkgver = r332.688b883
pkgrel = 1
url = https://github.com/deadpixi/mtm
arch = i686
@@ -8,6 +8,7 @@ pkgbase = mtm-git
license = GPL
makedepends = git
depends = ncurses
+ provides = mtm
source = git+https://github.com/deadpixi/mtm.git
md5sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index 10ae4f6c73c2..4d639ad20db8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,12 +1,13 @@
# Maintainer: Adrián Laviós <adrian@lavios.eu>
pkgname=mtm-git
-pkgver=r52.7432d00
+pkgver=r332.688b883
pkgrel=1
pkgdesc="Perhaps the smallest useful terminal multiplexer in the world."
arch=('i686' 'x86_64')
url="https://github.com/deadpixi/mtm"
license=('GPL')
depends=('ncurses')
+provides=('mtm')
makedepends=('git')
source=('git+https://github.com/deadpixi/mtm.git')
md5sums=('SKIP')
@@ -25,6 +26,8 @@ package() {
cd "$srcdir/mtm"
install -Dm755 "mtm" "$pkgdir/usr/bin/mtm"
install -Dm644 "mtm.1" "$pkgdir/usr/share/man/man1/mtm.1"
+ install -dm755 "$pkgdir/usr/share/terminfo"
+ tic -s -x -o"$pkgdir/usr/share/terminfo" mtm.ti
}
# vim:set ts=2 sw=2 et: