20 lines
646 B
Bash
20 lines
646 B
Bash
# Maintainer: David Thurstenson <thurstylark@gmail.com>
|
|
pkgname=tl-weemux
|
|
pkgver=0.1
|
|
pkgrel=1
|
|
pkgdesc="Thurstylark's weechat+tmux setup"
|
|
arch=(any)
|
|
url="https://git.thurstylark.com/thurstylark/${pkgname}.git/"
|
|
license=('GPL')
|
|
depends=('weechat' 'tmux' 'mosh')
|
|
source=("tl-weemux@.service"
|
|
"tmux.conf")
|
|
sha256sums=('40cc79f3b9b5267bddf0a54cc417880ddc87e7e1ed705fd02dd72de466df018f'
|
|
'd6d90810f2a1576436bb256a39a4ad3e3d9ccc6a76549efe9774832908c0a01b')
|
|
|
|
package() {
|
|
cd ${srcdir}
|
|
install -Dm644 "tl-weemux@.service" "${pkgdir}/usr/lib/systemd/system/tl-weemux@.service"
|
|
install -Dm644 "tmux.conf" "${pkgdir}/etc/tl-weemux/tmux.conf"
|
|
}
|