diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/picocom | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/picocom')
-rw-r--r-- | community/picocom/PKGBUILD | 33 | ||||
-rw-r--r-- | community/picocom/picocom.install | 19 |
2 files changed, 52 insertions, 0 deletions
diff --git a/community/picocom/PKGBUILD b/community/picocom/PKGBUILD new file mode 100644 index 000000000..6347d05b1 --- /dev/null +++ b/community/picocom/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 75039 2012-08-12 14:06:03Z seblu $ +# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org> +# Contributor: Jens Adam (byte/jra) <j_adam@web.de> + +pkgname=picocom +pkgver=1.7 +pkgrel=2 +pkgdesc='Minimal dumb-terminal emulation program, very much like minicom' +url='http://code.google.com/p/picocom/' +license=('GPL2') +arch=('i686' 'x86_64') +depends=('glibc') +install=$pkgname.install +source=("http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tar.gz") +sha1sums=('bde6e36af71db845913f9d61f28dee1b485218fa') + +build() { + cd $pkgname-$pkgver + make --environment-overrides UUCP_LOCK_DIR=/run/lock/picocom +} + +package() { + cd $pkgname-$pkgver + install -D -m 755 picocom "$pkgdir/usr/bin/picocom" + install -D -m 644 picocom.8 "$pkgdir/usr/share/man/man8/picocom.8" + # install tmpfiles for lock files + # http://lists.freedesktop.org/archives/systemd-devel/2011-March/001823.html + install -D -m 644 /dev/null "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf" + echo "d /run/lock/$pkgname 0770 root uucp" \ + > "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf" +} + +# vim:set ts=2 sw=2 ft=sh et: diff --git a/community/picocom/picocom.install b/community/picocom/picocom.install new file mode 100644 index 000000000..4d2f2ed48 --- /dev/null +++ b/community/picocom/picocom.install @@ -0,0 +1,19 @@ +#!/bin/sh + +## arg 1: the new package version +post_install() { + type systemd-tmpfiles >/dev/null && systemd-tmpfiles --create picocom.conf +} + +# arg 1: the new package version +# arg 2: the old package version +post_upgrade() { + post_install "$1" +} + +## arg 1: the old package version +post_remove() { + type systemd-tmpfiles >/dev/null && systemd-tmpfiles --clean --remove picocom.conf +} + +# vim:set ts=2 sw=2 ft=sh et: |