You are not logged in.
Pages: 1
makepkg couldn't download a source from one site, although URL was correct.
'export WGETRC' in PKGBUILD with some wget options helped.
Question: does makepkg always use wget ?
PKGBUILD:
pkgname=asfbin-bin
pkgver=1.7.1.756
pkgrel=1
pkgdesc="Intuitive, fast and reliable tool for processing ASF and WMV files"
arch=("i686")
url="http://www.radioactivepages.com/asfbin.aspx"
# license=('?')
depends=('libstdc++5')
source=('wgetrc'
"http://www.radioactivepages.com/downloading.ashx?file=asfbin/asfbinlinux${pkgver}.zip")
md5sums=('8dfb6620156d96ec9551adf1a24ea407'
'9c47a2cba77a5a3567508509c33b0593')
export WGETRC="$srcdir/wgetrc"
build() {
cd $srcdir
install -D -m755 asfbin-bin $pkgdir/usr/bin/asfbin-bin
}wgetrc:
referer = http://www.radioactivepages.com/asfbin.aspxArch 64, xfce4
Offline
It uses what is defined in its configuration file: /etc/makepkg.conf...
Offline
Pages: 1