diff options
author | sl1pkn07 | 2015-06-08 20:32:12 +0200 |
---|---|---|
committer | sl1pkn07 | 2015-06-08 20:32:12 +0200 |
commit | 82043746df1e74c4aedfc7a43ffd1bea821fd547 (patch) | |
tree | 3f019574d461c22e9107591c2b7bbf790dca0557 | |
download | aur-82043746df1e74c4aedfc7a43ffd1bea821fd547.tar.gz |
Initial commit
-rw-r--r-- | .SRCINFO | 17 | ||||
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | PKGBUILD | 33 |
3 files changed, 54 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..04860582ba97 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,17 @@ +pkgbase = vapoursynth-plugin-addgrain-git + pkgdesc = Plugin for Vapoursynth: addgrain (GIT version) + pkgver = r4.4.gcd00e83 + pkgrel = 1 + url = http://forum.doom9.org/showthread.php?t=171073 + arch = i686 + arch = x86_64 + license = GPL + makedepends = git + depends = vapoursynth + provides = vapoursynth-plugin-addgrain + conflicts = vapoursynth-plugin-addgrain + source = addgrain::git+https://github.com/HomeOfVapourSynthEvolution/VapourSynth-AddGrain.git + sha1sums = SKIP + +pkgname = vapoursynth-plugin-addgrain-git + diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..05c6d4d4c97b --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +* +!.gitignore +!.SRCINFO +!PKGBUILD diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..cd26ccb102be --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,33 @@ +# Maintainer: Gustavo Alvarez <sl1pkn07@gmail.com> + +_plug=addgrain +pkgname=vapoursynth-plugin-${_plug}-git +pkgver=r4.4.gcd00e83 +pkgrel=1 +pkgdesc="Plugin for Vapoursynth: ${_plug} (GIT version)" +arch=('i686' 'x86_64') +url="http://forum.doom9.org/showthread.php?t=171073" +license=('GPL') +depends=('vapoursynth') +makedepends=('git') +provides=("vapoursynth-plugin-${_plug}") +conflicts=("vapoursynth-plugin-${_plug}") +source=("${_plug}::git+https://github.com/HomeOfVapourSynthEvolution/VapourSynth-AddGrain.git") +sha1sums=('SKIP') + +pkgver() { + cd "${_plug}" + echo "$(git describe --long --tags | tr - .)" +} + +build() { + cd "${_plug}" + ./configure --install="${pkgdir}/usr/lib/vapoursynth" + make +} + +package(){ + cd "${_plug}" + make install + install -Dm644 README.md "${pkgdir}/usr/share/doc/vapoursynth/plugins/${_plug}/README.md" +} |