git » dtc.git » commit 21ae429

upgpkg: 1.4.1-1

author Anatol Pomozov
2014-11-12 15:27:28 UTC
committer Anatol Pomozov
2014-11-12 15:27:28 UTC
parent ce0a31f6cfb202de59b568d5b1182e44d0991c70

upgpkg: 1.4.1-1

PKGBUILD +7 -8

diff --git a/PKGBUILD b/PKGBUILD
index 5122247..815c398 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,28 +2,27 @@
 # Contributor: Frederic Bezies <fredbezies at gmail dot com>
 
 pkgname=dtc
-pkgver=1.4.0
+pkgver=1.4.1
 pkgrel=1
 pkgdesc='Device Tree Compiler'
-url='http://jdl.com/software/'
+url='http://www.devicetree.org/Device_Tree_Compiler'
 arch=(i686 x86_64)
 license=(GPL2)
-makedepends=(git)
-source=(git://git.kernel.org/pub/scm/utils/dtc/dtc.git#tag=v$pkgver)
-md5sums=('SKIP')
+source=(https://www.kernel.org/pub/software/utils/dtc/dtc-$pkgver.tar.xz)
+sha256sums=('77992ad8eac7b68f553d0ba58e5b51604ac803d126196c99e3ae38aaae28bb94')
 
 build() {
-  cd dtc
+  cd dtc-$pkgver
   make
 }
 
 check() {
-  cd dtc
+  cd dtc-$pkgver
   make check
 }
 
 package() {
-  cd dtc
+  cd dtc-$pkgver
   make DESTDIR="$pkgdir" PREFIX=/usr install
 }