Package Details: flip 20130224-4

Git Clone URL: https://aur.archlinux.org/flip.git (read-only, click to copy)
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: unknown
Submitter: None
Maintainer: Florian
Last Packager: Florian
Votes: 9
Popularity: 0.000000
First Submitted: 2008-02-25 00:33 (UTC)
Last Updated: 2015-07-09 10:29 (UTC)

Dependencies (0)

Required by (0)

Sources (1)

Latest Comments

Florian commented on 2015-04-28 19:29 (UTC)

Fixed, thanks.

Erroneous commented on 2015-04-28 19:26 (UTC)

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/.

Florian commented on 2013-12-04 17:42 (UTC)

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 (UTC)

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 (UTC)

It's not in my setup. Do you have something set for ${pkgdir}?

darkxsun commented on 2013-12-04 16:33 (UTC)

Binary is installed in /pkg/usr/bin/flip

UnCO commented on 2013-04-09 03:21 (UTC)

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 }