diff options
Diffstat (limited to '~lukeshu')
-rw-r--r-- | ~lukeshu/emacsutils-git/PKGBUILD | 34 | ||||
-rw-r--r-- | ~lukeshu/thingutils-git/PKGBUILD | 25 |
2 files changed, 44 insertions, 15 deletions
diff --git a/~lukeshu/emacsutils-git/PKGBUILD b/~lukeshu/emacsutils-git/PKGBUILD new file mode 100644 index 000000000..61af70cde --- /dev/null +++ b/~lukeshu/emacsutils-git/PKGBUILD @@ -0,0 +1,34 @@ +# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net> + +_pkgname=emacsutils +pkgname=$_pkgname-git + +pkgver=20141127 +_gitver=c2909be8b00643412ee36de4e3779676f74f0637 +pkgdesc="Utilities for interacting with GNU Emacs from a *NIX environment" +url="https://lukeshu.com/git/emacsutils.git" +license=('GPL3') + +provides=($_pkgname) +conflicts=($_pkgname) + +pkgrel=1 +arch=('any') + +depends=('emacs') +source=("https://repo.parabola.nu/other/~lukeshu/$_pkgname/$pkgname-$pkgver.tar.gz") +md5sums=('4760289afbbd45ab539d5d9f035ae073') + +mkdepends=('git') +mksource=("$pkgname-$pkgver::git://lukeshu.com/$_pkgname.git#commit=$_gitver") +mkmd5sums=('SKIP') + +build() { + cd "$srcdir/$pkgname-$pkgver" + make prefix=/usr +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make install prefix=/usr DESTDIR="$pkgdir" +} diff --git a/~lukeshu/thingutils-git/PKGBUILD b/~lukeshu/thingutils-git/PKGBUILD index 44dd3b07a..3ed858edb 100644 --- a/~lukeshu/thingutils-git/PKGBUILD +++ b/~lukeshu/thingutils-git/PKGBUILD @@ -3,34 +3,31 @@ _pkgname=thingutils pkgname=$_pkgname-git -pkgver=20131203 -_gitver=aa2d5a3a4363ff4f4ca23f4c6716613c4be66ecd -pkgdesc="Random shell utilities by Luke Shumaker" -url="https://gitorious.org/thingutils" +pkgver=20141128 +_gitver=30c42d2c3f6a9ce65e85363601abd1e469a32a2f +pkgdesc="Miscellaneous utilities by Luke Shumaker" +url="https://lukeshu.com/git/thingutils.git" license=('MIT') provides=($_pkgname) conflicts=($_pkgname) -pkgrel=2 -arch=('i686' 'x86_64' 'mips64el') + +pkgrel=1 +arch=('i686' 'x86_64') depends=( 'php' # urldecode - 'bash' # daemon, newegg, sysfiles - 'emacs' # emacsmail, emacsterm, e - 'wget' # whatismyip - 'findutils' # maildups, whatismyip - 'sysstat' # sysfiles 'offlineimap' # offlineimap-runner 'wdiff' # chardiff 'acpi' # batterymon, tempmon ) makedepends=('go') -source=("https://repo.parabolagnulinux.org/other/~lukeshu/$_pkgname/$pkgname-$pkgver.tar.gz") +source=("https://repo.parabola.nu/other/~lukeshu/$_pkgname/$pkgname-$pkgver.tar.gz") +md5sums=('f08e191c97e1ab1109a4b73173549374') mkdepends=('git') -mksource=("$pkgname-$pkgver::git://gitorious.org/$_pkgname/$_pkgname.git#commit=$_gitver") +mksource=("$pkgname-$pkgver::git://lukeshu.com/$_pkgname.git#commit=$_gitver") mkmd5sums=('SKIP') build() { @@ -42,5 +39,3 @@ package() { cd "$srcdir/$pkgname-$pkgver" make install prefix=/usr DESTDIR="$pkgdir" } - -md5sums=('7991e689263698f3d9a6470184f97ed1') |