1
0
mirror of https://github.com/jordansissel/fpm synced 2025-08-31 04:20:42 +02:00
fpm/test/dir-rpm-with-prefix.test
2011-11-30 09:37:28 +01:00

16 lines
302 B
Bash

#!/bin/bash
run() {
mkdir -p $tmpdir/{a,b,c}/{d,e,f}
touch $tmpdir/a/hello
touch $tmpdir/a/d/hello
touch $tmpdir/c/d/hello
prefix=/opt/foo/bar
fpm -s dir -t rpm -n testing -a all --prefix $prefix -C $tmpdir
rpm -qlp testing-1.0-1.noarch.rpm > $output
rm testing-1.0-1.noarch.rpm
}