I had to change the url and source to point at https://ccrma.stanford.edu/~craig/utility/flip/ instead of http://www-ccrma.stanford.edu/~craig/utility/flip/.
Search Criteria
Package Details: flip 20130224-4
Git Clone URL: | https://aur.archlinux.org/flip.git (read-only) |
---|---|
Package Base: | flip |
Description: | Utility program to convert text files between UNIX or Mac newlines and DOS linefeed + newlines. |
Upstream URL: | http://ccrma.stanford.edu/~craig/utility/flip/ |
Licenses: | |
Submitter: | None |
Maintainer: | Florian |
Last Packager: | Florian |
Votes: | 9 |
Popularity: | 0.000197 |
First Submitted: | 2008-02-25 00:33 |
Last Updated: | 2015-07-09 10:29 |
Latest Comments
Florian commented on 2015-04-28 19:29
Erroneous commented on 2015-04-28 19:26
Florian commented on 2013-12-04 17:42
Yes it should. Weird, in my personal PKGBUILD git repo this isn't the case. Anyway, I've updated it.
darkxsun commented on 2013-12-04 17:40
Nope. The PKGBUILD says ${pkgdir}/pkg/usr/bin... would this not point to /pkg/usr/bin, in general?
Florian commented on 2013-12-04 16:38
It's not in my setup. Do you have something set for ${pkgdir}?
darkxsun commented on 2013-12-04 16:33
Binary is installed in /pkg/usr/bin/flip
UnCO commented on 2013-04-09 03:21
diff --git a/PKGBUILD b/PKGBUILD.yes
index ba363ed..b738e8b 100644
--- a/PKGBUILD
+++ b/PKGBUILD.yes
@@ -12,9 +12,9 @@ depends=('gcc-libs')
source=(http://www-ccrma.stanford.edu/~craig/utility/flip/$pkgname.cpp)
md5sums=('21dc9256584eceffcfc27e137b3f8bc5')
-build() {
- cd $startdir/src/
+package() {
+ cd $srcdir
g++ $CXXFLAGS flip.cpp -o flip || return 1
- mkdir -p $startdir/pkg/usr/bin
- cp flip $startdir/pkg/usr/bin
+ mkdir -p $pkgdir/usr/bin
+ install -m755 flip $pkgdir/usr/bin/flip
}
Fixed, thanks.