20 lines
646 B
Bash
20 lines
646 B
Bash
# Maintainer: David Thurstenson <thurstylark@gmail.com>
|
|
pkgname=tl-weemux
|
|
pkgver=0.2
|
|
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=('734cae9b58d3f9572023fd2dcb7326bfb7e999555cf220e571e177a6b7cbeead'
|
|
'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"
|
|
}
|