diff options
author | Britney Fransen <brfransen@gmail.com> | 2016-09-26 19:29:32 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2016-09-26 19:29:32 (GMT) |
commit | 23879cd576d17b9d9139fe89b79e4daacfc56e6f (patch) | |
tree | 312f21c939f8aed35e2220349741b5ca188cb6e0 | |
parent | 0c96de1930726e05cb0ce428632bdd6fb65b84d3 (diff) | |
download | linhes_pkgbuild-23879cd576d17b9d9139fe89b79e4daacfc56e6f.zip linhes_pkgbuild-23879cd576d17b9d9139fe89b79e4daacfc56e6f.tar.gz linhes_pkgbuild-23879cd576d17b9d9139fe89b79e4daacfc56e6f.tar.bz2 |
cmake: update to 3.6.2
-rw-r--r-- | abs/core/cmake/PKGBUILD | 7 | ||||
-rw-r--r-- | abs/core/cmake/cmake.install | 12 |
2 files changed, 3 insertions, 16 deletions
diff --git a/abs/core/cmake/PKGBUILD b/abs/core/cmake/PKGBUILD index e56b6e0..6896a07 100644 --- a/abs/core/cmake/PKGBUILD +++ b/abs/core/cmake/PKGBUILD @@ -4,8 +4,8 @@ # Contributor: Pierre Schmitz <pierre@archlinux.de> pkgname=cmake -pkgver=3.4.1 -pkgrel=3 +pkgver=3.6.2 +pkgrel=1 pkgdesc='A cross-platform open-source make system' arch=('i686' 'x86_64') url="http://www.cmake.org/" @@ -14,9 +14,8 @@ depends=('curl' 'libarchive' 'shared-mime-info' 'jsoncpp') makedepends=('qt5-base' 'python2-sphinx' 'emacs') optdepends=('qt5-base: cmake-gui' 'libxkbcommon-x11: cmake-gui') -install="${pkgname}.install" source=("http://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz") -md5sums=('73acda0d33be9b2729af99893d99a012') +md5sums=('139d7affdd4e8ab1edfc9f4322d69e43') prepare() { cd ${pkgname}-${pkgver} diff --git a/abs/core/cmake/cmake.install b/abs/core/cmake/cmake.install deleted file mode 100644 index 55f6c84..0000000 --- a/abs/core/cmake/cmake.install +++ /dev/null @@ -1,12 +0,0 @@ -post_install() { - update-mime-database usr/share/mime &> /dev/null - [[ -x usr/bin/update-desktop-database ]] && update-desktop-database -q || true -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} |