devel@ where you _can_ ask
 help / color / mirror / Atom feed
* [newbies] ncmpcpp. Прокомментируйте, пожалуйста, спек
@ 2010-11-01 20:54 Anatoly Bashmakov
  2010-11-01 21:24 ` Alexey I. Froloff
  0 siblings, 1 reply; 10+ messages in thread
From: Anatoly Bashmakov @ 2010-11-01 20:54 UTC (permalink / raw)
  To: devel-newbies

[-- Attachment #1: Type: text/plain, Size: 265 bytes --]

Добрый день.

Не нашел в сизифе ncmpcpp (http://unkart.ovh.org/ncmpcpp/), которым
пользовался в других дистрибутивах linux. Это консольный клиент к mpd на
ncurses(w). Поэтому собрал пакет. Если у кого-то есть время/желание
прокомментировать, буду рад.

-- 
Anatoly

[-- Attachment #2: ncmpcpp.spec --]
[-- Type: text/plain, Size: 2256 bytes --]

%def_disable debug
%def_disable static
%def_enable outputs
%def_enable visualizer
%def_enable clock
%def_enable unicode
%def_with taglib
%def_with iconv
%def_with fftw
%def_with curl

Name: ncmpcpp
Version: 0.5.5
Release: alt1
Summary: Music Player Daemon console client
License: %gpl2only
Group: Sound
URL: http://unkart.ovh.org/ncmpcpp
Source0: http://unkart.ovh.org/ncmpcpp/ncmpcpp-0.5.5.tar.bz2
Packager: Anatoly Bashmakov <anatoly@eusers.ru>

BuildRequires(pre): rpm-build-licenses
# Automatically added by buildreq on Sun Oct 24 2010
BuildRequires: gcc-c++ libcurl-devel libfftw3-devel libmpdclient-devel libncursesw-devel libtag-devel
%{?_with_curl:BuildRequires: libcurl-devel}
%{?_with_fftw:BuildRequires: libfftw3-devel}
%{?_with_taglib:BuildRequires: libtag-devel}
%{?_enable_unicode:BuildRequires: libncursesw-devel}

%description
Ncmpcpp has UI very similar to ncmpc's one, but it provides new useful
features such as support for regular expressions in search engine,
extended song format, items filtering, last.fm support, ability to
sort playlist, local filesystem browser and other minor functions.


%prep
%setup -n %name-%version

%build
# Put doc files to the right place
%__sed -i -e 's,docdir = $(prefix)/share/doc/$(PACKAGE),#docdir = $(prefix)/share/doc/$(PACKAGE),' Makefile.am
%__sed -i -e 's,docdir = $(prefix)/share/doc/$(PACKAGE),#docdir = $(prefix)/share/doc/$(PACKAGE),' doc/Makefile.am
%autoreconf
%configure \
    %{subst_enable debug} \
    %{subst_enable static} \
    %{subst_enable outputs} \
    %{subst_enable visualizer} \
    %{subst_enable clock} \
    %{subst_enable unicode} \
    %{subst_with taglib} \
    %{subst_with iconv} \
    %{subst_with fftw} \
    %{subst_with curl} \
    --docdir=%_docdir/%name-%version
%make_build
bzip2 --best --keep --force NEWS


%install
%make_install DESTDIR=%buildroot install
bzip2 --best %buildroot%_docdir/%name-%version/NEWS

%files
%doc %dir %_docdir/%name-%version
%doc %_docdir/%name-%version/AUTHORS
%doc %_docdir/%name-%version/COPYING
%doc %_docdir/%name-%version/NEWS.*
%doc %_docdir/%name-%version/config
%doc %_docdir/%name-%version/keys
%_bindir/*
%_man1dir/*

%changelog
* Sat Oct 23 2010 Anatoly Bashmakov <anatoly@eusers.ru> 0.5.5-alt1
- 0.5.5. Initial build

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [newbies] ncmpcpp. Прокомментируйте, пожалуйста, спек
  2010-11-01 20:54 [newbies] ncmpcpp. Прокомментируйте, пожалуйста, спек Anatoly Bashmakov
@ 2010-11-01 21:24 ` Alexey I. Froloff
  2010-11-01 22:09   ` Anatoly Bashmakov
  0 siblings, 1 reply; 10+ messages in thread
From: Alexey I. Froloff @ 2010-11-01 21:24 UTC (permalink / raw)
  To: devel-newbies

[-- Attachment #1: Type: text/plain, Size: 946 bytes --]

On Mon, Nov 01, 2010 at 11:54:19PM +0300, Anatoly Bashmakov wrote:
> %setup -n %name-%version
%setup

> %__sed -i -e 's,docdir = $(prefix)/share/doc/$(PACKAGE),#docdir = $(prefix)/share/doc/$(PACKAGE),' Makefile.am
> %__sed -i -e 's,docdir = $(prefix)/share/doc/$(PACKAGE),#docdir = $(prefix)/share/doc/$(PACKAGE),' doc/Makefile.am
sed -i -e '/^docdir = /d' Makefile.am doc/Makefile.am

> bzip2 --best --keep --force NEWS
Совершенно бессмысленная операция в %build.

> %make_install DESTDIR=%buildroot install
%makeinstall_std

> %doc %dir %_docdir/%name-%version
> %doc %_docdir/%name-%version/AUTHORS
> %doc %_docdir/%name-%version/COPYING
> %doc %_docdir/%name-%version/NEWS.*
> %doc %_docdir/%name-%version/config
> %doc %_docdir/%name-%version/keys
Достаточно
%_docdir/%name-%version
удалив предварительно оттуда мусор (if any) в %install.

-- 
Regards,    --
Sir Raorn.   --- http://thousandsofhate.blogspot.com/

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [newbies] ncmpcpp. Прокомментируйте, пожалуйста, спек
  2010-11-01 21:24 ` Alexey I. Froloff
@ 2010-11-01 22:09   ` Anatoly Bashmakov
  2010-11-01 22:59     ` Alexey I. Froloff
  0 siblings, 1 reply; 10+ messages in thread
From: Anatoly Bashmakov @ 2010-11-01 22:09 UTC (permalink / raw)
  To: devel-newbies

[-- Attachment #1: Type: text/plain, Size: 1155 bytes --]

Спасибо!

Alexey I. Froloff wrote:
> On Mon, Nov 01, 2010 at 11:54:19PM +0300, Anatoly Bashmakov wrote:
> > %setup -n %name-%version
> %setup
Понял

> 
> > %__sed -i -e 's,docdir = $(prefix)/share/doc/$(PACKAGE),#docdir = $(prefix)/share/doc/$(PACKAGE),' Makefile.am
> > %__sed -i -e 's,docdir = $(prefix)/share/doc/$(PACKAGE),#docdir = $(prefix)/share/doc/$(PACKAGE),' doc/Makefile.am
> sed -i -e '/^docdir = /d' Makefile.am doc/Makefile.am
Думал, закомментировать понятнее будет, да и s/^docdir/#docdir/ хватило
бы.

> 
> > bzip2 --best --keep --force NEWS
> Совершенно бессмысленная операция в %build.
Это после install делать? Имеет смысл делать эту операцию вообще?
Заметил в некоторых пакетах сжимают, в некоторых нет.

> 
> > %make_install DESTDIR=%buildroot install
> %makeinstall_std
> 
> > %doc %dir %_docdir/%name-%version
> > %doc %_docdir/%name-%version/AUTHORS
> > %doc %_docdir/%name-%version/COPYING
> > %doc %_docdir/%name-%version/NEWS.*
> > %doc %_docdir/%name-%version/config
> > %doc %_docdir/%name-%version/keys
> Достаточно
> %_docdir/%name-%version
> удалив предварительно оттуда мусор (if any) в %install.

Исправил.

-- 
Anatoly

[-- Attachment #2: ncmpcpp.spec --]
[-- Type: text/plain, Size: 1769 bytes --]

%def_disable debug
%def_disable static
%def_enable outputs
%def_enable visualizer
%def_enable clock
%def_enable unicode
%def_with taglib
%def_with iconv
%def_with fftw
%def_with curl

Name: ncmpcpp
Version: 0.5.5
Release: alt1
Summary: Music Player Daemon console client
License: %gpl2only
Group: Sound
URL: http://unkart.ovh.org/ncmpcpp
Source0: http://unkart.ovh.org/ncmpcpp/ncmpcpp-0.5.5.tar.bz2
Packager: Anatoly Bashmakov <anatoly@eusers.ru>

BuildRequires(pre): rpm-build-licenses
# Automatically added by buildreq on Sun Oct 24 2010
BuildRequires: gcc-c++ libcurl-devel libfftw3-devel libmpdclient-devel libncursesw-devel libtag-devel
%{?_with_curl:BuildRequires: libcurl-devel}
%{?_with_fftw:BuildRequires: libfftw3-devel}
%{?_with_taglib:BuildRequires: libtag-devel}
%{?_enable_unicode:BuildRequires: libncursesw-devel}

%description
Ncmpcpp has UI very similar to ncmpc's one, but it provides new useful
features such as support for regular expressions in search engine,
extended song format, items filtering, last.fm support, ability to
sort playlist, local filesystem browser and other minor functions.


%prep
%setup

%build
# Put doc files to the right place
sed -i -e '/^docdir = /d' Makefile.am doc/Makefile.am
%autoreconf
%configure \
    %{subst_enable debug} \
    %{subst_enable static} \
    %{subst_enable outputs} \
    %{subst_enable visualizer} \
    %{subst_enable clock} \
    %{subst_enable unicode} \
    %{subst_with taglib} \
    %{subst_with iconv} \
    %{subst_with fftw} \
    %{subst_with curl} \
    --docdir=%_docdir/%name-%version
%make_build


%install
%makeinstall_std

%files
%_docdir/%name-%version/*
%_bindir/*
%_man1dir/*

%changelog
* Sat Oct 23 2010 Anatoly Bashmakov <anatoly@eusers.ru> 0.5.5-alt1
- 0.5.5. Initial build

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [newbies] ncmpcpp. Прокомментируйте, пожалуйста, спек
  2010-11-01 22:09   ` Anatoly Bashmakov
@ 2010-11-01 22:59     ` Alexey I. Froloff
  2010-11-01 23:48       ` Anatoly Bashmakov
  0 siblings, 1 reply; 10+ messages in thread
From: Alexey I. Froloff @ 2010-11-01 22:59 UTC (permalink / raw)
  To: devel-newbies

[-- Attachment #1: Type: text/plain, Size: 1005 bytes --]

On Tue, Nov 02, 2010 at 01:09:25AM +0300, Anatoly Bashmakov wrote:
> > sed -i -e '/^docdir = /d' Makefile.am doc/Makefile.am
> Думал, закомментировать понятнее будет
Эти файлы всё равно никто никогда не будет читать.  Удалить
проще.

> > > bzip2 --best --keep --force NEWS
> > Совершенно бессмысленная операция в %build.
> Это после install делать?
NEWS.bz2, очевидно, никто не установит по make install, в %files
этот файл тоже не устанавливается, указан --keep.  Значит в
buildroot будет установлен оригинальный файл.  После install эту
операцию имеет смысл производить над файлом, находящимся в
buildroot, что уже делается.

> Имеет смысл делать эту операцию вообще?
Какого он размера, для начала?  Если десятки или сотни килобайт,
то да.

> %_docdir/%name-%version/*
Нет, именно

%_docdir/%name-%versionY

без /* на конце.  Это аналогично

%dir %_docdir/%name-%version
%_docdir/%name-%version/*

-- 
Regards,    --
Sir Raorn.   --- http://thousandsofhate.blogspot.com/

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [newbies] ncmpcpp. Прокомментируйте, пожалуйста, спек
  2010-11-01 22:59     ` Alexey I. Froloff
@ 2010-11-01 23:48       ` Anatoly Bashmakov
  2010-11-02  5:58         ` Andrey Rahmatullin
  0 siblings, 1 reply; 10+ messages in thread
From: Anatoly Bashmakov @ 2010-11-01 23:48 UTC (permalink / raw)
  To: devel-newbies

[-- Attachment #1: Type: text/plain, Size: 538 bytes --]

Alexey I. Froloff wrote:
> On Tue, Nov 02, 2010 at 01:09:25AM +0300, Anatoly Bashmakov wrote:
> Какого он размера, для начала?  Если десятки или сотни килобайт,
> то да.
Файлы в /usr/share/doc/ncmpc-0.5.5:
4,0K    ./AUTHORS
12K     ./config
20K     ./COPYING
4,0K    ./keys
12K     ./NEWS
Имеет смысл что-то архивировать?

> Нет, именно
> 
> %_docdir/%name-%versionY
%_docdir/%name-%version ?
%versionY не нашел.

> без /* на конце.  Это аналогично
> 
> %dir %_docdir/%name-%version
> %_docdir/%name-%version/*
> 

Исправил.

-- 
Anatoly

[-- Attachment #2: ncmpcpp.spec --]
[-- Type: text/plain, Size: 1767 bytes --]

%def_disable debug
%def_disable static
%def_enable outputs
%def_enable visualizer
%def_enable clock
%def_enable unicode
%def_with taglib
%def_with iconv
%def_with fftw
%def_with curl

Name: ncmpcpp
Version: 0.5.5
Release: alt1
Summary: Music Player Daemon console client
License: %gpl2only
Group: Sound
URL: http://unkart.ovh.org/ncmpcpp
Source0: http://unkart.ovh.org/ncmpcpp/ncmpcpp-0.5.5.tar.bz2
Packager: Anatoly Bashmakov <anatoly@eusers.ru>

BuildRequires(pre): rpm-build-licenses
# Automatically added by buildreq on Sun Oct 24 2010
BuildRequires: gcc-c++ libcurl-devel libfftw3-devel libmpdclient-devel libncursesw-devel libtag-devel
%{?_with_curl:BuildRequires: libcurl-devel}
%{?_with_fftw:BuildRequires: libfftw3-devel}
%{?_with_taglib:BuildRequires: libtag-devel}
%{?_enable_unicode:BuildRequires: libncursesw-devel}

%description
Ncmpcpp has UI very similar to ncmpc's one, but it provides new useful
features such as support for regular expressions in search engine,
extended song format, items filtering, last.fm support, ability to
sort playlist, local filesystem browser and other minor functions.


%prep
%setup

%build
# Put doc files to the right place
sed -i -e '/^docdir = /d' Makefile.am doc/Makefile.am
%autoreconf
%configure \
    %{subst_enable debug} \
    %{subst_enable static} \
    %{subst_enable outputs} \
    %{subst_enable visualizer} \
    %{subst_enable clock} \
    %{subst_enable unicode} \
    %{subst_with taglib} \
    %{subst_with iconv} \
    %{subst_with fftw} \
    %{subst_with curl} \
    --docdir=%_docdir/%name-%version
%make_build


%install
%makeinstall_std

%files
%_docdir/%name-%version
%_bindir/*
%_man1dir/*

%changelog
* Sat Oct 23 2010 Anatoly Bashmakov <anatoly@eusers.ru> 0.5.5-alt1
- 0.5.5. Initial build

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [newbies] ncmpcpp. Прокомментируйте, пожалуйста, спек
  2010-11-01 23:48       ` Anatoly Bashmakov
@ 2010-11-02  5:58         ` Andrey Rahmatullin
  2010-11-02  9:56           ` Anatoly Bashmakov
  0 siblings, 1 reply; 10+ messages in thread
From: Andrey Rahmatullin @ 2010-11-02  5:58 UTC (permalink / raw)
  To: devel-newbies

[-- Attachment #1: Type: text/plain, Size: 711 bytes --]

On Tue, Nov 02, 2010 at 02:48:14AM +0300, Anatoly Bashmakov wrote:
> > On Tue, Nov 02, 2010 at 01:09:25AM +0300, Anatoly Bashmakov wrote:
> > Какого он размера, для начала?  Если десятки или сотни килобайт,
> > то да.
> Файлы в /usr/share/doc/ncmpc-0.5.5:
> 4,0K    ./AUTHORS
> 12K     ./config
> 20K     ./COPYING
> 4,0K    ./keys
> 12K     ./NEWS
> Имеет смысл что-то архивировать?
Нету, очевидно.
А если COPYING стандартный - его вообще паковать не надо.


-- 
WBR, wRAR
Powered by the ALT Linux fortune(6):

если вам кажется что [...] все остальные из team тихо сидят себе дома и
ночами собирают пакеты, а всем говорят что у них винда стоит - вы
ошибаетесь :-)
		-- gns in community@

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 490 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [newbies] ncmpcpp. Прокомментируйте, пожалуйста, спек
  2010-11-02  5:58         ` Andrey Rahmatullin
@ 2010-11-02  9:56           ` Anatoly Bashmakov
  2010-11-02 10:02             ` Andrey Rahmatullin
  0 siblings, 1 reply; 10+ messages in thread
From: Anatoly Bashmakov @ 2010-11-02  9:56 UTC (permalink / raw)
  To: devel-newbies

[-- Attachment #1: Type: text/plain, Size: 333 bytes --]

Andrey Rahmatullin wrote:
> > Имеет смысл что-то архивировать?
> Нету, очевидно.
Понял, спасибо. А вообще есть политика, что архивировать, а что нет? Или
только здравый смысл?

> А если COPYING стандартный - его вообще паковать не надо.
Удалить или сделать ссылку на файл из common-licenses? Сделал по второму
варианту.

-- 
Anatoly

[-- Attachment #2: ncmpcpp.spec --]
[-- Type: text/plain, Size: 1863 bytes --]

%def_disable debug
%def_disable static
%def_enable outputs
%def_enable visualizer
%def_enable clock
%def_enable unicode
%def_with taglib
%def_with iconv
%def_with fftw
%def_with curl

Name: ncmpcpp
Version: 0.5.5
Release: alt1
Summary: Music Player Daemon console client
License: %gpl2only
Group: Sound
URL: http://unkart.ovh.org/ncmpcpp
Source0: http://unkart.ovh.org/ncmpcpp/ncmpcpp-0.5.5.tar.bz2
Packager: Anatoly Bashmakov <anatoly@eusers.ru>

BuildRequires(pre): rpm-build-licenses
# Automatically added by buildreq on Sun Oct 24 2010
BuildRequires: gcc-c++ libcurl-devel libfftw3-devel libmpdclient-devel libncursesw-devel libtag-devel
%{?_with_curl:BuildRequires: libcurl-devel}
%{?_with_fftw:BuildRequires: libfftw3-devel}
%{?_with_taglib:BuildRequires: libtag-devel}
%{?_enable_unicode:BuildRequires: libncursesw-devel}

Requires: common-licenses

%description
Ncmpcpp has UI very similar to ncmpc's one, but it provides new useful
features such as support for regular expressions in search engine,
extended song format, items filtering, last.fm support, ability to
sort playlist, local filesystem browser and other minor functions.


%prep
%setup

%build
# Put doc files to the right place
sed -i -e '/^docdir = /d' Makefile.am doc/Makefile.am
%autoreconf
%configure \
    %{subst_enable debug} \
    %{subst_enable static} \
    %{subst_enable outputs} \
    %{subst_enable visualizer} \
    %{subst_enable clock} \
    %{subst_enable unicode} \
    %{subst_with taglib} \
    %{subst_with iconv} \
    %{subst_with fftw} \
    %{subst_with curl} \
    --docdir=%_docdir/%name-%version
%make_build


%install
%makeinstall_std
ln -sf %_licensedir/GPL-2 %buildroot/%_docdir/%name-%version/COPYING

%files
%_docdir/%name-%version
%_bindir/*
%_man1dir/*

%changelog
* Sat Oct 23 2010 Anatoly Bashmakov <anatoly@eusers.ru> 0.5.5-alt1
- 0.5.5. Initial build

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [newbies] ncmpcpp. Прокомментируйте, пожалуйста, спек
  2010-11-02  9:56           ` Anatoly Bashmakov
@ 2010-11-02 10:02             ` Andrey Rahmatullin
  2010-11-02 11:12               ` Anatoly Bashmakov
  0 siblings, 1 reply; 10+ messages in thread
From: Andrey Rahmatullin @ 2010-11-02 10:02 UTC (permalink / raw)
  To: devel-newbies

[-- Attachment #1: Type: text/plain, Size: 1045 bytes --]

On Tue, Nov 02, 2010 at 12:56:43PM +0300, Anatoly Bashmakov wrote:
> > > Имеет смысл что-то архивировать?
> > Нету, очевидно.
> Понял, спасибо. А вообще есть политика, что архивировать, а что нет? Или
> только здравый смысл?
Политики, как и в большинстве остального, нету.
Сжимать надо только то, что почти никто читать не будет либо то, что
можно читать без разжатия (посткрипт и текстовые файлы) и при этом
большое.

> > А если COPYING стандартный - его вообще паковать не надо.
> Удалить или сделать ссылку на файл из common-licenses? Сделал по второму
> варианту.
Удалить. И про это было на wiki, по-моему.

-- 
WBR, wRAR
Powered by the ALT Linux fortune(6):

> неужели у нас образовалось столько свободного времени и желания решать
> дополнительные проблемы, чтобы бежать впереди апстрима?
Отдельно взятый апстрим не в состоянии понять проблематику суммы
апстримов.  Кто-то должен смотреть на апстримы со стороны.  Это конечно
получается что-то в духе "я и без вас смогу решить вашу проблему". :)
		-- at in devel@

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 490 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [newbies] ncmpcpp. Прокомментируйте, пожалуйста, спек
  2010-11-02 10:02             ` Andrey Rahmatullin
@ 2010-11-02 11:12               ` Anatoly Bashmakov
  2010-11-02 13:25                 ` Anatoly Bashmakov
  0 siblings, 1 reply; 10+ messages in thread
From: Anatoly Bashmakov @ 2010-11-02 11:12 UTC (permalink / raw)
  To: devel-newbies

[-- Attachment #1: Type: text/plain, Size: 502 bytes --]

Andrey Rahmatullin wrote:
> Политики, как и в большинстве остального, нету.
> Сжимать надо только то, что почти никто читать не будет либо то, что
> можно читать без разжатия (посткрипт и текстовые файлы) и при этом
> большое.
Понятно, спасибо.

> > > А если COPYING стандартный - его вообще паковать не надо.
> > Удалить или сделать ссылку на файл из common-licenses? Сделал по второму
> > варианту.
> Удалить. И про это было на wiki, по-моему.
Да, действительно в вики есть, был неправ.

-- 
Anatoly

[-- Attachment #2: ncmpcpp.spec --]
[-- Type: text/plain, Size: 1818 bytes --]

%def_disable debug
%def_disable static
%def_enable outputs
%def_enable visualizer
%def_enable clock
%def_enable unicode
%def_with taglib
%def_with iconv
%def_with fftw
%def_with curl

Name: ncmpcpp
Version: 0.5.5
Release: alt1
Summary: Music Player Daemon console client
License: %gpl2only
Group: Sound
URL: http://unkart.ovh.org/ncmpcpp
Packager: Anatoly Bashmakov <anatoly@eusers.ru>

Source0: http://unkart.ovh.org/ncmpcpp/ncmpcpp-0.5.5.tar.bz2

BuildRequires(pre): rpm-build-licenses
# Automatically added by buildreq on Sun Oct 24 2010
BuildRequires: gcc-c++ libcurl-devel libfftw3-devel libmpdclient-devel libncursesw-devel libtag-devel
%{?_with_curl:BuildRequires: libcurl-devel}
%{?_with_fftw:BuildRequires: libfftw3-devel}
%{?_with_taglib:BuildRequires: libtag-devel}
%{?_enable_unicode:BuildRequires: libncursesw-devel}


%description
Ncmpcpp has UI very similar to ncmpc's one, but it provides new useful
features such as support for regular expressions in search engine,
extended song format, items filtering, last.fm support, ability to
sort playlist, local filesystem browser and other minor functions.


%prep
%setup

%build
# Put doc files to the right place
sed -i -e '/^docdir = /d' Makefile.am doc/Makefile.am
%autoreconf
%configure \
    %{subst_enable debug} \
    %{subst_enable static} \
    %{subst_enable outputs} \
    %{subst_enable visualizer} \
    %{subst_enable clock} \
    %{subst_enable unicode} \
    %{subst_with taglib} \
    %{subst_with iconv} \
    %{subst_with fftw} \
    %{subst_with curl} \
    --docdir=%_docdir/%name-%version
%make_build


%install
%makeinstall_std
rm -f %buildroot/%_docdir/%name-%version/COPYING

%files
%_docdir/%name-%version
%_bindir/*
%_man1dir/*

%changelog
* Sat Oct 23 2010 Anatoly Bashmakov <anatoly@eusers.ru> 0.5.5-alt1
- 0.5.5. Initial build

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [newbies] ncmpcpp. Прокомментируйте, пожалуйста, спек
  2010-11-02 11:12               ` Anatoly Bashmakov
@ 2010-11-02 13:25                 ` Anatoly Bashmakov
  0 siblings, 0 replies; 10+ messages in thread
From: Anatoly Bashmakov @ 2010-11-02 13:25 UTC (permalink / raw)
  To: devel-newbies

raorn@, wrar@ спасибо! Спек стал заметно чище.

-- 
Anatoly


^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2010-11-02 13:25 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-11-01 20:54 [newbies] ncmpcpp. Прокомментируйте, пожалуйста, спек Anatoly Bashmakov
2010-11-01 21:24 ` Alexey I. Froloff
2010-11-01 22:09   ` Anatoly Bashmakov
2010-11-01 22:59     ` Alexey I. Froloff
2010-11-01 23:48       ` Anatoly Bashmakov
2010-11-02  5:58         ` Andrey Rahmatullin
2010-11-02  9:56           ` Anatoly Bashmakov
2010-11-02 10:02             ` Andrey Rahmatullin
2010-11-02 11:12               ` Anatoly Bashmakov
2010-11-02 13:25                 ` Anatoly Bashmakov

devel@ where you _can_ ask

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/devel-newbies/0 devel-newbies/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 devel-newbies devel-newbies/ http://lore.altlinux.org/devel-newbies \
		devel-newbies@lists.altlinux.org devel-newbies@lists.altlinux.ru devel-newbies@lists.altlinux.com
	public-inbox-index devel-newbies

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.devel-newbies


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git