removed lsb-release from the dependencies
Search Criteria
Package Details: radium_compressor 0.5.1-4
Package Actions
| Package Base: | radium_compressor |
|---|---|
| Description: | A standalone jack audio compressor |
| Upstream URL: | http://users.notam02.no/~kjetism/radium/compressor_plugin.php |
| Category: | multimedia |
| Licenses: | |
| Submitter: | rtfreedman |
| Maintainer: | None |
| Last Packager: | None |
| Votes: | 0 |
| First Submitted: | 2013-03-31 20:56 |
| Last Updated: | 2013-04-02 03:27 |
Required by (0)
Sources
- http://archive.notam02.no/arkiv/src/radium_compressor-0.5.1.tar.gz
- Makefile.patch
- radium_compressor.desktop
- radium_compressor.install
- radium_compressor.png
Latest Comments
Comment by rtfreedman
Comment by rtfreedman
Added radium_compressor.install
Comment by rtfreedman
There is a missing dependency: lsb-release
Update PKGBUILD now
Comment by rtfreedman
Are you sure you have at4 installed?
Try: ./find_moc_and_uic_paths.sh uic resp. ./find_moc_and_uic_paths.sh moc
in the srcdir after patching - It should output uic-at4 resp. moc-qt4
It is used later as an argument in create_source_from_ui.sh, eg.
Makefile: cd Qt && ./create_source_from_ui.sh `../find_moc_and_uic_paths.sh uic` `../find_moc_and_uic_paths.sh moc` ...
Anonymous comment
Oh, forgot, here's the output, when I try to build your package:
==> Starting build()...
patching file find_moc_and_uic_paths.sh
patching file Makefile
cd Qt && ./create_source_from_ui.sh `../find_moc_and_uic_paths.sh uic` `../find_moc_and_uic_paths.sh moc` compressor_widget
./create_source_from_ui.sh: line 15: uic: command not found
./create_source_from_ui.sh: line 19: moc: command not found
make: *** [all] Error 127
==> ERROR: A failure occurred in build().
Aborting...
Anonymous comment
Hi, your find_moc_and_uic_paths.patch doesn't fix the build process here. I had to patch the file Qt/create_source_from_ui.sh like seen below. I'm not sure why it doesn't work the way you patched it, because that makes perfect sense to me. Are you sure your package builds on your machine the way you put it here?
diff -paur radium_compressor-0.5.1/Qt/create_source_from_ui.sh radium_compressor-0.5.1.new/Qt/create_source_from_ui.sh
--- radium_compressor-0.5.1/Qt/create_source_from_ui.sh 2013-01-26 12:55:27.000000000 +0100
+++ radium_compressor-0.5.1.new/Qt/create_source_from_ui.sh 2013-04-01 00:22:24.188078434 +0200
@@ -1,7 +1,7 @@
#!/bin/bash
-UIC=$1
-MOC=$2
+UIC=$1-qt4
+MOC=$2-qt4
V=$3
# * Creates the .h and .cpp files for the qt designer ui files.