From a9ad5a75f29c1175ec7916c715b007c2d388e0cb Mon Sep 17 00:00:00 2001 From: "Jason St. John" Date: Fri, 16 Nov 2012 18:31:43 -0500 Subject: Replace space-based indents in prototypes with tabs The previous commit removed the Vim modelines which replaced tabs with spaces. This commit replaces the space-based indents with tabs. Tabs are generally more compatible with various user preferences regarding indentation of code. Using space-based indents is not flexible regarding user preferences at all. Signed-off-by: Jason St. John --- proto/PKGBUILD.proto | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'proto/PKGBUILD.proto') diff --git a/proto/PKGBUILD.proto b/proto/PKGBUILD.proto index 6e788c1d..8e9ae047 100644 --- a/proto/PKGBUILD.proto +++ b/proto/PKGBUILD.proto @@ -29,17 +29,17 @@ noextract=() md5sums=() #generate with 'makepkg -g' build() { - cd "$srcdir/$pkgname-$pkgver" - ./configure --prefix=/usr - make + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr + make } check() { - cd "$srcdir/$pkgname-$pkgver" - make -k check + cd "$srcdir/$pkgname-$pkgver" + make -k check } package() { - cd "$srcdir/$pkgname-$pkgver" - make DESTDIR="$pkgdir/" install + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir/" install } -- cgit v1.2.3-24-g4f1b