diff options
author | Oskar Grunning | 2019-03-07 23:20:57 +0100 |
---|---|---|
committer | Oskar Grunning | 2019-03-07 23:20:57 +0100 |
commit | d8b8c407a28ef897a135f44cf00e4a14bbc9a892 (patch) | |
tree | 20e53d5ed90360fd196ccab1f1e46bb8ee9603b6 /PKGBUILD | |
parent | 70273384b1ec47bb213d01a33945cf3e51164e2c (diff) | |
download | aur-d8b8c407a28ef897a135f44cf00e4a14bbc9a892.tar.gz |
Change order for readability
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 17 |
1 files changed, 8 insertions, 9 deletions
@@ -1,16 +1,16 @@ # Maintainer: sQVe <oskargrunning@gmail.com> -arch=('any') -depends=('weechat') -license=('BSD2') -sha512sums=('SKIP') -pkgdesc='Weechat plugin to replace emoji in the "colon" format with unicode equivalents!' pkgname=weechat-emoji-git -pkgrel=1 pkgver=r5.b6c25b2 -source=('git+https://github.com/kattrali/weemoji.git') -makedepends=('git') +pkgrel=1 +pkgdesc='Weechat plugin to replace emoji in the "colon" format with unicode equivalents!' url='https://github.com/kattrali/weemoji' +arch=('any') +license=('BSD2') +depends=('weechat') +makedepends=('git') +source=('git+https://github.com/kattrali/weemoji.git') +sha512sums=('SKIP') _gitname='weemoji' @@ -21,7 +21,6 @@ pkgver() { package() { cd "${_gitname}" - install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" install -Dm644 weemoji.py "${pkgdir}/usr/lib/weechat/python/weemoji.py" } |