summaryrefslogtreecommitdiff
path: root/pcr/packer-io
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2017-07-17 12:35:29 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2017-07-17 12:35:29 -0500
commit04a7edc67bcd358fe70163d9dbee23c5b22d2b89 (patch)
tree190d86738c54672595ca93ad56b0415c0d194f72 /pcr/packer-io
parentcfb421c3357780f81f612389e1bab058109c8cd0 (diff)
downloadabslibre-04a7edc67bcd358fe70163d9dbee23c5b22d2b89.tar.gz
abslibre-04a7edc67bcd358fe70163d9dbee23c5b22d2b89.tar.bz2
abslibre-04a7edc67bcd358fe70163d9dbee23c5b22d2b89.zip
Removing packer-io: This package is in [community] repo
Diffstat (limited to 'pcr/packer-io')
-rw-r--r--pcr/packer-io/PKGBUILD42
1 files changed, 0 insertions, 42 deletions
diff --git a/pcr/packer-io/PKGBUILD b/pcr/packer-io/PKGBUILD
deleted file mode 100644
index 3eb9c3842..000000000
--- a/pcr/packer-io/PKGBUILD
+++ /dev/null
@@ -1,42 +0,0 @@
-# Maintainer : Aurelien Desbrieres <aurelien@hackers.camp>
-# Contributor: Danilo Kuehn <dk[at]nogo-software[dot]de>
-
-_name=packer
-pkgname=packer-io
-pkgver=0.7.2
-pkgrel=1
-pkgdesc="Packer is a tool for creating identical machine images for multiple platforms from a single source configuration."
-url="http://www.packer.io"
-arch=('x86_64' 'i686')
-license=('MPL2')
-depends=(unzip)
-optdepends=()
-conflicts=()
-
-# https://dl.bintray.com/mitchellh/packer/packer_0.7.2_linux_amd64.zip
-# https://dl.bintray.com/mitchellh/packer/#packer_0.7.2_linux_amd64.zip
-if test "$CARCH" == i686; then
-source=("${_name}-${pkgver}.zip::https://dl.bintray.com/mitchellh/packer/${_name}_${pkgver}_linux_386.zip")
-else
-source=("${_name}-${pkgver}.zip::https://dl.bintray.com/mitchellh/packer/${_name}_${pkgver}_linux_amd64.zip")
-fi
-noextract=(${source[@]%%::*})
-
-prepare() {
- if [[ -e ${srcdir}/${_name}-${pkgver} ]]; then rm -rf ${srcdir}/${_name}-${pkgver}; fi
- mkdir ${srcdir}/${_name}-${pkgver}
- unzip -o ${_name}-${pkgver}.zip -d ${srcdir}/${_name}-${pkgver}
-}
-
-package() {
- install -dm755 "${pkgdir}/usr/bin"
-
- cd "${srcdir}/${_name}-${pkgver}"
- for file in `ls ${srcdir}/${_name}-${pkgver}`; do
- if [ "$file" == "packer" ]; then
- install -Dm755 "$file" "${pkgdir}/usr/bin/${file}-io"
- else
- install -Dm755 "$file" "${pkgdir}/usr/bin/${file}"
- fi
- done
-}