1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00
freebsd-ports/audio/mp3c/files/cdrip.sh
Jason E. Hale 759b9c06a7 - Unbreak by moving small unfetchable script to ${FILESDIR}
While here:
- Add LICENSE
- Convert to options helpers
- Fix location of default CDROM device on FreeBSD>=10

PR:		200140
Submitted by:	Chris Hutchinson <portmaster@bsdforge.com>
Approved by:	maintainer timeout
2015-06-17 16:11:47 +00:00

8 lines
116 B
Bash

#!/bin/sh
if [ -f /tmp/mp3 ] ; then
rm /tmp/mp3
fi
mkfifo /tmp/mp3
dagrab -v -n 64 -d $1 -f /tmp/mp3 $2 &