File: buildrpm

package info (click to toggle)
libtest-lectrotest-perl 0.5001-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 412 kB
  • sloc: perl: 1,808; sh: 13; makefile: 6
file content (15 lines) | stat: -rwxr-xr-x 336 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

if [ -z "$1" ]; then
    echo Usage: buildrpm VERSION 1>&2
    exit 1
fi

for v in "$@"; do
    cpan2rpm "Test-LectroTest-$v.tar.gz" \
        --release=1.fc3.tgm \
        --url=http://community.moertel.com/LectroTest \
        --author='Tom Moertel <tom@moertel.com>' \
        --version=$v \
        --make-no-test
done