summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b2dbca7cf1a8f23dbe94e55b45ac76db1f8a0f0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: mmh <aur@with-h.at>

pkgname="git-store-meta"
pkgver=2.1.1
pkgrel=3
pkgdesc="Simple file metadata storing and applying for git"
arch=(any)
url="https://github.com/danny0838/${pkgname}"
license=('MIT')
depends=('coreutils' 'git>=1.7.2' 'perl>=5.8')
optdepends=('acl: Manipulate ACL metadata')
source=("https://github.com/danny0838/${pkgname}/archive/${pkgver}.tar.gz")
sha256sums=('a3357ae82b8382945ce07823441af67f8591efc2ce019d688ff1184757bbee7f')

prepare() {
    cd "${pkgname}-${pkgver}"
    sed -i 's|git-store-meta\.pl|git-store-meta|g' git-store-meta.pl
}

package() {
    cd "${pkgname}-${pkgver}"
    install -D git-store-meta.pl "${pkgdir}/usr/bin/git-store-meta"
}